diff options
Diffstat (limited to 'modules/core/os_module.cpp')
-rw-r--r-- | modules/core/os_module.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/core/os_module.cpp b/modules/core/os_module.cpp index fb56d322e..562e130aa 100644 --- a/modules/core/os_module.cpp +++ b/modules/core/os_module.cpp @@ -16,7 +16,7 @@ class CommandOSModLoad : public Command { public: - CommandOSModLoad(Module *creator) : Command(creator, "operserv/modload", 1, 1, "operserv/modload") + CommandOSModLoad(Module *creator) : Command(creator, "operserv/modload", 1, 1) { this->SetDesc(_("Load a module")); this->SetSyntax(_("\037modname\037")); @@ -61,7 +61,7 @@ class CommandOSModLoad : public Command class CommandOSModReLoad : public Command { public: - CommandOSModReLoad(Module *creator) : Command(creator, "operserv/modreload", 1, 1, "operserv/modload") + CommandOSModReLoad(Module *creator) : Command(creator, "operserv/modreload", 1, 1) { this->SetDesc(_("Reload a module")); this->SetSyntax(_("\037modname\037")); @@ -131,7 +131,7 @@ class CommandOSModReLoad : public Command class CommandOSModUnLoad : public Command { public: - CommandOSModUnLoad(Module *creator) : Command(creator, "operserv/modunload", 1, 1, "operserv/modload") + CommandOSModUnLoad(Module *creator) : Command(creator, "operserv/modunload", 1, 1) { this->SetDesc(_("Un-Load a module")); this->SetSyntax(_("\037modname\037")); |