mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-17 06:29:01 -04:00
Fix to stop new code treating all KICK messages as server KICKs
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3267 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
parent
ec731e8078
commit
8a37a9344b
@ -2350,9 +2350,10 @@ class TreeSocket : public InspSocket
|
||||
std::string sourceserv = this->myhost;
|
||||
if (params.size() == 3)
|
||||
{
|
||||
userrec* source = Srv->FindNick(prefix);
|
||||
userrec* user = Srv->FindNick(params[1]);
|
||||
chanrec* chan = Srv->FindChannel(params[0]);
|
||||
if (user && chan)
|
||||
if (user && chan && !source)
|
||||
{
|
||||
server_kick_channel(user,chan,(char*)params[2].c_str(),false);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user