1
0
mirror of https://github.com/anope/anope.git synced 2026-07-08 02:23:13 +02:00

Fix cs_forbid.

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1384 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
Robin Burchell w00t@inspircd.org
2008-10-02 23:35:25 +00:00
parent 20f0a61ed0
commit 6a0f4b7e42
+1 -1
View File
@@ -112,7 +112,7 @@ int do_forbid(User * u)
av[0] = c->name;
av[1] = cu->user->nick;
av[2] = reason ? reason : "CHAN_FORBID_REASON";
ircdproto->SendKick(s_ChanServ, av[0], av[1], av[2]);
ircdproto->SendKick(findbot(s_ChanServ), av[0], av[1], av[2]);
do_kick(s_ChanServ, 3, av);
}
}