From 9094c71a50121d0b32137864921150614dc02da0 Mon Sep 17 00:00:00 2001 From: moto Date: Sun, 8 May 2022 17:43:21 -0400 Subject: [PATCH] Server: Undo accidental Power-Up spawn changes --- source/server/ai/zombie_core.qc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source/server/ai/zombie_core.qc b/source/server/ai/zombie_core.qc index 1a2ec0a..443aafa 100644 --- a/source/server/ai/zombie_core.qc +++ b/source/server/ai/zombie_core.qc @@ -1132,10 +1132,9 @@ void() Zombie_Death = { if (totalpowerups < 4) { - Spawn_Powerup(self.origin + '0 0 13', 0); if (total_powerup_points >= powerup_score_threshold) { - //Spawn_Powerup(self.origin + '0 0 13', -1); + Spawn_Powerup(self.origin + '0 0 13', -1); powerup_activate *= 1.14; powerup_score_threshold = total_powerup_points + powerup_activate; }