1
0

Fixed cRoot::FindAndDoWithPlayer().

Now /kick and /ban work.
This commit is contained in:
madmaxoft 2013-11-10 22:58:14 +01:00
parent 480ff3789b
commit 09e4f041dd

View File

@ -547,9 +547,9 @@ bool cRoot::FindAndDoWithPlayer(const AString & a_PlayerName, cPlayerListCallbac
}
if (Rating == NameLength) // Perfect match
{
return false;
return true;
}
return true;
return false;
}
public: