diff --git a/ZombieRiot/scripting/unloze_zr.sp b/ZombieRiot/scripting/unloze_zr.sp index fc5339cc..97955b1d 100644 --- a/ZombieRiot/scripting/unloze_zr.sp +++ b/ZombieRiot/scripting/unloze_zr.sp @@ -1637,7 +1637,7 @@ public Action SelectWavebasedHuman(int client) CreateTimer(1.0, Timer_delayedRespawn, GetClientUserId(client)); return Plugin_Continue; } - if (!IsPlayerAlive(client) && CS_TEAM_CT) //this should help if you spawn late into a round so that you actually respawn + if (!IsPlayerAlive(client) && (GetClientTeam(client)) == CS_TEAM_CT) //this should help if you spawn late into a round so that you actually respawn { CreateTimer(1.0, Timer_delayedRespawn, GetClientUserId(client)); return Plugin_Continue;