diff options
author | lethality <lethality@anope.org> | 2011-08-08 06:19:35 +0100 |
---|---|---|
committer | lethality <lethality@anope.org> | 2011-08-08 06:19:35 +0100 |
commit | 286a9edb1ecc05d0afc515e05dce868efe38f063 (patch) | |
tree | c224702fc1f6e57bc3e24ac478afd236760aa1b2 /modules/commands/os_set.cpp | |
parent | ade92395a0f08b125b60fbbd488eecb5c3258e76 (diff) |
Standardized some of the SyntaxError/Help replies and corrected some syntax in BotServ set
Diffstat (limited to 'modules/commands/os_set.cpp')
-rw-r--r-- | modules/commands/os_set.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/os_set.cpp b/modules/commands/os_set.cpp index abee78e77..340b463ea 100644 --- a/modules/commands/os_set.cpp +++ b/modules/commands/os_set.cpp @@ -189,7 +189,7 @@ class CommandOSSet : public Command else if (option.equals_ci("NOEXPIRE")) return this->DoSetNoExpire(source, params); else - source.Reply(_("Unknown option \002%s\002."), option.c_str()); + this->OnSyntaxError(source, ""); return; } |