From 973d60eb9bdcf5478ca96212c3bc281fba1b8a06 Mon Sep 17 00:00:00 2001 From: Ian Date: Sat, 9 Sep 2023 14:18:24 -0400 Subject: [PATCH] SERVER: Fix Deadshot targetting dead zombies --- source/server/ai/zombie_core.qc | 1 + 1 file changed, 1 insertion(+) diff --git a/source/server/ai/zombie_core.qc b/source/server/ai/zombie_core.qc index c4b5106..aed4cf3 100644 --- a/source/server/ai/zombie_core.qc +++ b/source/server/ai/zombie_core.qc @@ -1108,6 +1108,7 @@ void(entity ent) Zombie_Death_Cleanup = { ent.movetype = MOVETYPE_NONE; ent.takedamage = DAMAGE_NO; + ent.head.classname = ""; ent.head.solid = SOLID_NOT; ent.head.movetype = MOVETYPE_NONE; ent.head.takedamage = DAMAGE_NO;