diff options
author | Adam <Adam@anope.org> | 2013-05-06 07:40:43 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-05-06 07:40:43 -0400 |
commit | ef06226521d27de88a49a84d8224568fec7624c3 (patch) | |
tree | ac67340c29521150bbcedc995ffeb7058366fe5e /modules/commands/os_forbid.cpp | |
parent | 4c669b947ff090f50fef379cfc1b2cad08ecc486 (diff) |
Update the rest of modules.example.conf, default inspircd status modes to a sane rank incase they are prefixless, and 50 other things
Diffstat (limited to 'modules/commands/os_forbid.cpp')
-rw-r--r-- | modules/commands/os_forbid.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/modules/commands/os_forbid.cpp b/modules/commands/os_forbid.cpp index 6cc00edda..c7c147c7e 100644 --- a/modules/commands/os_forbid.cpp +++ b/modules/commands/os_forbid.cpp @@ -14,8 +14,6 @@ #include "module.h" #include "modules/os_forbid.h" -static ServiceReference<NickServService> nickserv("NickServService", "NickServ"); - class MyForbidService : public ForbidService { Serialize::Checker<std::vector<ForbidData *>[FT_SIZE - 1]> forbid_data; @@ -87,7 +85,7 @@ class CommandOSForbid : public Command CommandOSForbid(Module *creator) : Command(creator, "operserv/forbid", 1, 5), fs("ForbidService", "forbid") { this->SetDesc(_("Forbid usage of nicknames, channels, and emails")); - this->SetSyntax(_("ADD {NICK|CHAN|EMAIL|REGISTER} [+\037expiry\037] \037entry\037\002 [\037reason\037]")); + this->SetSyntax(_("ADD {NICK|CHAN|EMAIL|REGISTER} [+\037expiry\037] \037entry\037\002 \037reason\037")); this->SetSyntax(_("DEL {NICK|CHAN|EMAIL|REGISTER} \037entry\037")); this->SetSyntax(_("LIST (NICK|CHAN|EMAIL|REGISTER)")); } |