[NON-MODULAR] Events Roll Less Often (#7147)

* update event freq

* Update code/controllers/subsystem/events.dm

* Update code/controllers/subsystem/events.dm

* Update cme.dm
This commit is contained in:
Matthew J
2021-07-27 18:24:57 -04:00
committed by GitHub
parent bb173a6c47
commit bab2714a02
2 changed files with 3 additions and 3 deletions

View File

@@ -9,9 +9,9 @@ SUBSYSTEM_DEF(events)
var/scheduled = 0 //The next world.time that a naturally occuring random event can be selected.
//var/frequency_lower = 1800 //3 minutes lower bound. //ORIGINAL
var/frequency_lower = 3000 //5 minutes //SKYRAT EDIT CHANGE - EVENTS
var/frequency_lower = 10 MINUTES //SKYRAT EDIT CHANGE - EVENTS LESS OFTEN
//var/frequency_upper = 6000 //10 minutes upper bound. Basically an event will happen every 3 to 10 minutes. //ORIGINAL
var/frequency_upper = 9000 //15 minutes. So you get events inbetween 5 and 15 minutes. //SKYRAT EDIT CHANGE - EVENTS
var/frequency_upper = 15 MINUTES //SKYRAT EDIT CHANGE - EVENTS LESS OFTEN
var/list/holidays //List of all holidays occuring today or null if no holidays
var/wizardmode = FALSE