diff options
author | Sadie Powell <sadie@witchery.services> | 2020-04-10 00:35:17 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2020-04-10 00:35:41 +0100 |
commit | 103267efa4b754ad0a816fbcc01d7ba3f22d8107 (patch) | |
tree | 3dd1dcb1ceb97e9d518ff125b9ecf060ac647037 /src | |
parent | 85f8879eb29e260f5de33dd12a70985a3aac4849 (diff) |
Add the missing VF_CORE flag to the core_whowas module.
Diffstat (limited to 'src')
-rw-r--r-- | src/coremods/core_whowas.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coremods/core_whowas.cpp b/src/coremods/core_whowas.cpp index 9f208a026..80cf5ceb2 100644 --- a/src/coremods/core_whowas.cpp +++ b/src/coremods/core_whowas.cpp @@ -452,7 +452,7 @@ class ModuleWhoWas : public Module, public Stats::EventListener Version GetVersion() CXX11_OVERRIDE { - return Version("Provides the WHOWAS command", VF_VENDOR); + return Version("Provides the WHOWAS command", VF_CORE | VF_VENDOR); } }; |