From 9524a6550af22d1978682dc01b127184d8ec2eb9 Mon Sep 17 00:00:00 2001 From: jenz Date: Tue, 31 Dec 2024 12:38:29 +0100 Subject: [PATCH] that was probably a mistake --- ZombieRiot/scripting/unloze_zr.sp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;