SERVER: Restore Power-Up Rate Percentage

This was changed not too long ago to be 4% from 2%, testing found that
this is incorrect. Unsure where 4% came from, this restores previous
functionality.
This commit is contained in:
cypress 2023-10-30 18:23:51 -04:00
parent bbb6387fb9
commit 7842010fd0

View file

@ -1170,7 +1170,7 @@ void() Zombie_Death =
powerup_activate *= 1.14;
powerup_score_threshold = total_powerup_points + powerup_activate;
}
else if (random () <= 0.04)
else if (random () <= 0.02)
Spawn_Powerup(self.origin + '0 0 13', -1);
}
}