From 0c66cc2c71ea9f2f5c926d8aeb2a8eb8e94c1c10 Mon Sep 17 00:00:00 2001 From: Adam Date: Thu, 11 May 2017 08:47:46 -0400 Subject: m_sakick: remove unused "Unable to kick" notice This has never worked due to the channel lookup using the user's nick --- src/modules/m_sakick.cpp | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/modules') diff --git a/src/modules/m_sakick.cpp b/src/modules/m_sakick.cpp index 7dfcd8904..afca49e25 100644 --- a/src/modules/m_sakick.cpp +++ b/src/modules/m_sakick.cpp @@ -63,14 +63,6 @@ class CommandSakick : public Command if (IS_LOCAL(dest)) { channel->KickUser(ServerInstance->FakeClient, dest, reason); - - Channel *n = ServerInstance->FindChan(parameters[1]); - if (n && n->HasUser(dest)) - { - /* Sort-of-bug: If the command was issued remotely, this message won't be sent */ - user->WriteServ("NOTICE %s :*** Unable to kick %s from %s", user->nick.c_str(), dest->nick.c_str(), parameters[0].c_str()); - return CMD_FAILURE; - } } if (IS_LOCAL(user)) -- cgit v1.2.3