NoSteamManager: Swap around if statements.

They shouldve been this way around. Oops dx
This commit is contained in:
zaCade 2018-07-18 15:57:53 +02:00
parent 0c8697438b
commit ab5bbd6e95

View File

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