diff options
author | Adam <Adam@anope.org> | 2011-03-29 13:43:22 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-03-29 13:43:22 -0400 |
commit | 685e99be0241e97665cefe8730bb4aa53647aeb2 (patch) | |
tree | dc62fa62a4af26a360a4aa661d81514e9441aa0c /modules/core/bs_kick.cpp | |
parent | b14b7bd55ec9b26ca7787060022b63fc3c001196 (diff) |
Fixed some left over useprivmsg problems and fixed some compiler warnings.
Diffstat (limited to 'modules/core/bs_kick.cpp')
-rw-r--r-- | modules/core/bs_kick.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/core/bs_kick.cpp b/modules/core/bs_kick.cpp index 3e1902445..82882b480 100644 --- a/modules/core/bs_kick.cpp +++ b/modules/core/bs_kick.cpp @@ -479,7 +479,7 @@ class CommandBSKick : public Command "on a specific option.\n" " \n" "Note: access to this command is controlled by the\n" - "level SET."), Config->UseStrictPrivMsgString.c_str(), ChanServ->nick.c_str()); + "level SET."), Config->UseStrictPrivMsgString.c_str(), BotServ->nick.c_str()); else if (subcommand.equals_ci("BADWORDS")) source.Reply(_("Syntax: \002KICK \037#channel\037 BADWORDS {\037ON|OFF\037} [\037ttb\037]\002\n" "Sets the bad words kicker on or off. When enabled, this\n" @@ -490,7 +490,7 @@ class CommandBSKick : public Command "more information.\n" "ttb is the number of times a user can be kicked\n" "before it get banned. Don't give ttb to disable\n" - "the ban system once activated."), Config->UseStrictPrivMsgString.c_str(), ChanServ->nick.c_str()); + "the ban system once activated."), Config->UseStrictPrivMsgString.c_str(), BotServ->nick.c_str()); else if (subcommand.equals_ci("BOLDS")) source.Reply(_("Syntax: \002KICK \037channel\037 BOLDS {\037ON|OFF\037} [\037ttb\037]\002\n" "Sets the bolds kicker on or off. When enabled, this\n" |