diff options
author | Adam <Adam@anope.org> | 2014-11-03 23:16:23 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2014-11-03 23:45:22 -0500 |
commit | fb2fd9e9d3195d6f032fcc901ff65a7171676f9b (patch) | |
tree | b13f7b299848de1f0ef1b5f2c6ef85701e46952f /modules/commands/bs_kick.cpp | |
parent | 527e04275f23ac34d97a91c96b535ad184593e6e (diff) |
Fix log message when enabling botserv kickers
Diffstat (limited to 'modules/commands/bs_kick.cpp')
-rw-r--r-- | modules/commands/bs_kick.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/commands/bs_kick.cpp b/modules/commands/bs_kick.cpp index f3f000474..09383f54d 100644 --- a/modules/commands/bs_kick.cpp +++ b/modules/commands/bs_kick.cpp @@ -230,12 +230,12 @@ class CommandBSKickBase : public Command source.Reply(_("Bot will now kick for \002%s\002."), optname.c_str()); bool override = !source.AccessFor(ci).HasPriv("SET"); - Log(override ? LOG_OVERRIDE : LOG_COMMAND, source, this, ci) << "to enable the " << optname << "kicker"; + Log(override ? LOG_OVERRIDE : LOG_COMMAND, source, this, ci) << "to enable the " << optname << " kicker"; } else if (param.equals_ci("OFF")) { bool override = !source.AccessFor(ci).HasPriv("SET"); - Log(override ? LOG_OVERRIDE : LOG_COMMAND, source, this, ci) << "to disable the " << optname << "kicker"; + Log(override ? LOG_OVERRIDE : LOG_COMMAND, source, this, ci) << "to disable the " << optname << " kicker"; val = false; source.Reply(_("Bot won't kick for \002%s\002 anymore."), optname.c_str()); |