1
0
mirror of https://github.com/anope/anope.git synced 2026-06-29 14:56:37 +02:00

Fix log message when enabling botserv kickers

This commit is contained in:
Adam
2014-11-03 23:16:23 -05:00
parent 527e04275f
commit fb2fd9e9d3
+2 -2
View File
@@ -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());