diff options
| author | 2014-06-10 17:12:00 +0200 | |
|---|---|---|
| committer | 2014-06-10 17:12:00 +0200 | |
| commit | 854af2945eb6b9b62c19e3c823d3bcc8a84e52ae (patch) | |
| tree | 3ccf9b4ae39f4ae7964a0391f6af7ee3045fb8e4 /src/coremods | |
| parent | Move pre-kick checks from core to cmd_kick (core_channel) (diff) | |
Change Channel::KickUser() to accept an iterator, add overload that accepts a User
Remove srcmemb parameter
Diffstat (limited to 'src/coremods')
| -rw-r--r-- | src/coremods/core_channel/cmd_kick.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coremods/core_channel/cmd_kick.cpp b/src/coremods/core_channel/cmd_kick.cpp index a9e7ee2cd..9039d8551 100644 --- a/src/coremods/core_channel/cmd_kick.cpp +++ b/src/coremods/core_channel/cmd_kick.cpp @@ -112,7 +112,7 @@ CmdResult CommandKick::Handle (const std::vector<std::string>& parameters, User } } - c->KickUser(user, u, reason, srcmemb); + c->KickUser(user, u, reason); return CMD_SUCCESS; } |
