summaryrefslogtreecommitdiff
path: root/src/coremods/core_channel
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2014-06-10 17:12:00 +0200
committerAttila Molnar <attilamolnar@hush.com>2014-06-10 17:12:00 +0200
commit854af2945eb6b9b62c19e3c823d3bcc8a84e52ae (patch)
tree3ccf9b4ae39f4ae7964a0391f6af7ee3045fb8e4 /src/coremods/core_channel
parentbef2d3f462cacd978898235dc49a0a6c3bac0356 (diff)
Change Channel::KickUser() to accept an iterator, add overload that accepts a User
Remove srcmemb parameter
Diffstat (limited to 'src/coremods/core_channel')
-rw-r--r--src/coremods/core_channel/cmd_kick.cpp2
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;
}