Makes the gravity generator blackout even signficantly less common on low population rounds. (#1362)

This commit is contained in:
QuiteLiterallyAnything
2025-03-02 01:51:21 -08:00
committed by GitHub
parent cbe033cf9b
commit db64b57c25
2 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
/datum/round_event_control/gravity_generator_blackout/New()
. = ..()
if(at_lowpop(15))
weight = 0
max_occurrences = 0
if(at_lowpop(30))
weight = 20
max_occurrences = 3

View File

@@ -6789,6 +6789,7 @@
#include "fulp_modules\Z_edits\emote_edits\scream.dm"
#include "fulp_modules\Z_edits\erp_removal\double_beds.dm"
#include "fulp_modules\Z_edits\erp_removal\clothing\clothing.dm"
#include "fulp_modules\Z_edits\event_overrides\grav_gen_blackout.dm"
#include "fulp_modules\Z_edits\fixes\radio.dm"
#include "fulp_modules\Z_edits\inititalize_edits\closet_init.dm"
#include "fulp_modules\Z_edits\inititalize_edits\techweb_init.dm"