diff options
Diffstat (limited to 'src/modules/m_sakick.cpp')
-rw-r--r-- | src/modules/m_sakick.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/modules/m_sakick.cpp b/src/modules/m_sakick.cpp index b81df75c6..d6b6e965b 100644 --- a/src/modules/m_sakick.cpp +++ b/src/modules/m_sakick.cpp @@ -31,7 +31,6 @@ class CommandSakick : public Command User* dest = ServerInstance->FindNick(parameters[1]); Channel* channel = ServerInstance->FindChan(parameters[0]); const char* reason = ""; - const char* servername = NULL; if (dest && channel) { @@ -56,7 +55,7 @@ class CommandSakick : public Command */ if (IS_LOCAL(dest)) { - channel->ServerKickUser(dest, reason, servername); + channel->KickUser(ServerInstance->FakeClient, dest, reason); Channel *n = ServerInstance->FindChan(parameters[1]); if (n && n->HasUser(dest)) |