diff options
Diffstat (limited to 'modules/core/os_modload.cpp')
-rw-r--r-- | modules/core/os_modload.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/modules/core/os_modload.cpp b/modules/core/os_modload.cpp index c655df683..80052b635 100644 --- a/modules/core/os_modload.cpp +++ b/modules/core/os_modload.cpp @@ -18,6 +18,7 @@ class CommandOSModLoad : public Command public: CommandOSModLoad() : Command("MODLOAD", 1, 1, "operserv/modload") { + this->SetDesc("Load a module"); } CommandReturn Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) @@ -64,11 +65,6 @@ class CommandOSModLoad : public Command { SyntaxError(source, "MODLOAD", _("MODLOAD \037FileName\037")); } - - void OnServHelp(CommandSource &source) - { - source.Reply(_(" MODLOAD Load a module")); - } }; class OSModLoad : public Module |