NoSteamPlayerCount: Remove InGame check.

This commit is contained in:
zaCade 2018-08-25 14:40:18 +02:00
parent 288346d7d0
commit 6ea36a22e4

View File

@ -123,8 +123,5 @@ public bool IsValidClient(int client)
if (client > GetMaxClients())
return false;
if (!IsClientInGame(client))
return false;
return true;
}