diff --git a/source/server/ai/zombie_core.qc b/source/server/ai/zombie_core.qc index 0a68207..853e66c 100644 --- a/source/server/ai/zombie_core.qc +++ b/source/server/ai/zombie_core.qc @@ -1147,15 +1147,14 @@ void() Zombie_Death = { if (totalpowerups < POWERUPS_PER_ROUND) { - Spawn_Powerup(self.origin + '0 0 13', -1); - /*if (total_powerup_points >= powerup_score_threshold) + if (total_powerup_points >= powerup_score_threshold) { Spawn_Powerup(self.origin + '0 0 13', -1); powerup_activate *= 1.14; powerup_score_threshold = total_powerup_points + powerup_activate; } else if (random () <= 0.02) - Spawn_Powerup(self.origin + '0 0 13', -1);*/ + Spawn_Powerup(self.origin + '0 0 13', -1); } }