diff options
Diffstat (limited to 'modules/commands/os_modinfo.cpp')
-rw-r--r-- | modules/commands/os_modinfo.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/commands/os_modinfo.cpp b/modules/commands/os_modinfo.cpp index 5d6de2e6c..1c837bb64 100644 --- a/modules/commands/os_modinfo.cpp +++ b/modules/commands/os_modinfo.cpp @@ -13,7 +13,7 @@ class CommandOSModInfo : public Command { - public: +public: CommandOSModInfo(Module *creator) : Command(creator, "operserv/modinfo", 1, 1) { this->SetDesc(_("Info about a loaded module")); @@ -70,7 +70,7 @@ class CommandOSModInfo : public Command class CommandOSModList : public Command { - public: +public: CommandOSModList(Module *creator) : Command(creator, "operserv/modlist", 0, 1) { this->SetDesc(_("List loaded modules")); @@ -197,7 +197,7 @@ class OSModInfo : public Module CommandOSModInfo commandosmodinfo; CommandOSModList commandosmodlist; - public: +public: OSModInfo(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, VENDOR), commandosmodinfo(this), commandosmodlist(this) { |