diff --git a/Turret/scripting/Turret.sp b/Turret/scripting/Turret.sp index 30f2f2ca..18ef178f 100644 --- a/Turret/scripting/Turret.sp +++ b/Turret/scripting/Turret.sp @@ -130,7 +130,7 @@ public void OnRound(Event hEvent, const char[] sEvent, bool bDontBroadcast) //---------------------------------------------------------------------------------------------------- public Action Command_Turret(int client, int args) { - if (!ZR_IsClientHuman(client)) + if (!(IsPlayerAlive(client) && ZR_IsClientHuman(client))) { ReplyToCommand(client, "[ZR] You need to be human to use this command."); return Plugin_Handled;