1
0
Fork 0

Changed method call to DoesAllowMultiLogin() instead of IsAllowMultiLogin()

Compiles correctly.
This commit is contained in:
Vincent 2014-12-10 00:45:24 -08:00
parent 3a2759fdc1
commit 9bba8e4c7d
1 changed files with 1 additions and 1 deletions

View File

@ -1791,7 +1791,7 @@ void cClientHandle::HandleKeepAlive(int a_KeepAliveID)
bool cClientHandle::CheckMultiLogin(const AString & a_Username)
{
// If the multilogin is allowed, skip this check entirely:
if ((cRoot::Get()->GetServer()->IsAllowMultiLogin()))
if ((cRoot::Get()->GetServer()->DoesAllowMultiLogin()))
{
return true;
}