diff options
Diffstat (limited to 'modules/core/cs_kick.cpp')
-rw-r--r-- | modules/core/cs_kick.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/core/cs_kick.cpp b/modules/core/cs_kick.cpp index 267c776e7..66c7c84db 100644 --- a/modules/core/cs_kick.cpp +++ b/modules/core/cs_kick.cpp @@ -75,7 +75,8 @@ class CommandCSKick : public Command void OnServHelp(User *u) { - u->SendMessage(ChanServ, CHAN_HELP_CMD_KICK); + if (this->name.equals_ci("KICK")) + u->SendMessage(ChanServ, CHAN_HELP_CMD_KICK); } }; |