summaryrefslogtreecommitdiff
path: root/src/modules.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules.cpp')
-rw-r--r--src/modules.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules.cpp b/src/modules.cpp
index 9bb8e9a05..bda6f765b 100644
--- a/src/modules.cpp
+++ b/src/modules.cpp
@@ -428,11 +428,11 @@ void Server::KickUser(userrec* source, userrec* target, chanrec* chan, const std
{
if (source)
{
- kick_channel(source,target,chan,(char*)reason.c_str());
+ chan->KickUser(source, target, reason.c_str());
}
else
{
- server_kick_channel(target,chan,(char*)reason.c_str(),true);
+ chan->ServerKickUser(target, reason.c_str(), true);
}
}