aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_globalload.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/m_globalload.cpp')
-rw-r--r--src/modules/m_globalload.cpp11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/modules/m_globalload.cpp b/src/modules/m_globalload.cpp
index 0bb1c8973..1bc5a8969 100644
--- a/src/modules/m_globalload.cpp
+++ b/src/modules/m_globalload.cpp
@@ -159,20 +159,19 @@ class CommandGreloadmodule : public Command
class ModuleGlobalLoad : public Module
{
+ private:
CommandGloadmodule cmd1;
CommandGunloadmodule cmd2;
CommandGreloadmodule cmd3;
public:
ModuleGlobalLoad()
- : cmd1(this), cmd2(this), cmd3(this)
+ : Module(VF_VENDOR | VF_COMMON, "Allows global loading of a module")
+ , cmd1(this)
+ , cmd2(this)
+ , cmd3(this)
{
}
-
- Version GetVersion() override
- {
- return Version("Allows global loading of a module", VF_COMMON | VF_VENDOR);
- }
};
MODULE_INIT(ModuleGlobalLoad)