1
0
Fork 0

Fixed return value in CheckMultiLogin()

This commit is contained in:
Vincent 2014-12-09 14:23:44 -08:00
parent 4b08ca261b
commit 3a2759fdc1
1 changed files with 2 additions and 1 deletions

View File

@ -1816,8 +1816,9 @@ bool cClientHandle::CheckMultiLogin(const AString & a_Username)
if (cRoot::Get()->DoWithPlayer(a_Username, Callback))
{
Kick("A player of the username is already logged in");
return false;
}
return false;
return true;
}