display_players_stats 1.2.1

This commit is contained in:
Resxt 2022-03-12 01:30:36 +01:00
parent e6d7970cc4
commit 8625fc4820

View File

@ -13,12 +13,12 @@ OnPlayerConnected()
// Don't thread DisplayPlayerKillstreak() on bots // Don't thread DisplayPlayerKillstreak() on bots
if (isDefined(player.pers["isBot"])) if (isDefined(player.pers["isBot"]))
{ {
if (player.pers["isBot"]) if (player.pers["isBot"])
{ {
continue; // skip continue; // skip
} }
} }
player thread DisplayPlayerKillstreak(); player thread DisplayPlayerKillstreak();
} }