NoSteamManager: Swap around if statements.

For real this time....
This commit is contained in:
zaCade 2018-07-18 16:03:41 +02:00
parent 61f9916319
commit 38599ef679

View File

@ -186,10 +186,10 @@ public void OnClientPutInServer(int client)
for(int player = 1; player <= MaxClients; player++)
{
if(IsFakeClient(player) || IsClientSourceTV(player))
if(client == player || !IsClientConnected(player))
continue;
if(client == player || !IsClientConnected(player))
if(IsFakeClient(player) || IsClientSourceTV(player))
continue;
char sPlayerSteamID[32];