diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 23:43:02 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 23:43:02 +0000 |
commit | d3a056c5fd87614c3fc1ea602973a08b27f180f2 (patch) | |
tree | 4530851c4cbe444e8e86e316944e08d887aead98 /src | |
parent | bffdb5d56bab3421e57e011104f493bb6b40516d (diff) |
Fix os_kick.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1389 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
-rw-r--r-- | src/core/os_kick.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/os_kick.c b/src/core/os_kick.c index f1ce4a072..69a731767 100644 --- a/src/core/os_kick.c +++ b/src/core/os_kick.c @@ -85,7 +85,7 @@ int do_os_kick(User * u) notice_lang(s_OperServ, u, OPER_BOUNCY_MODES_U_LINE); return MOD_CONT; } - ircdproto->SendKick(s_OperServ, chan, nick, "%s (%s)", u->nick, s); + ircdproto->SendKick(findbot(s_OperServ), chan, nick, "%s (%s)", u->nick, s); if (WallOSKick) ircdproto->SendGlobops(s_OperServ, "%s used KICK on %s/%s", u->nick, nick, chan); |