mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-08-15 14:43:32 -07:00
Fixed swapped names in 0fd8aa2a77
Noticed by elexis This was SVN commit r21534.
This commit is contained in:
parent
df79180fa6
commit
0c522edef3
1 changed files with 2 additions and 2 deletions
|
|
@ -959,8 +959,8 @@ bool CNetServerWorker::OnAuthenticate(void* context, CFsmEvent* event)
|
|||
if (server.m_LobbyAuth && usernameWithoutRating.LowerCase() != session->GetUserName().LowerCase())
|
||||
{
|
||||
LOGERROR("Net server: lobby auth: %s tried joining as %s",
|
||||
usernameWithoutRating.ToUTF8(),
|
||||
session->GetUserName().ToUTF8());
|
||||
session->GetUserName().ToUTF8(),
|
||||
usernameWithoutRating.ToUTF8());
|
||||
session->Disconnect(NDR_LOBBY_AUTH_FAILED);
|
||||
return true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue