lowers events frequency (#1118)

This commit is contained in:
Azarak
2020-10-04 23:45:58 +01:00
committed by GitHub
parent d0fdac3b3c
commit eb8b6e204c
4 changed files with 10 additions and 5 deletions
+4 -2
View File
@@ -8,8 +8,10 @@ SUBSYSTEM_DEF(events)
var/list/currentrun = list()
var/scheduled = 0 //The next world.time that a naturally occuring random event can be selected.
var/frequency_lower = 1800 //3 minutes lower bound.
var/frequency_upper = 6000 //10 minutes upper bound. Basically an event will happen every 3 to 10 minutes.
//var/frequency_lower = 1800 //3 minutes lower bound. //ORIGINAL
var/frequency_lower = 3000 //5 minutes //SKYRAT EDIT CHANGE - EVENTS
//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/list/holidays //List of all holidays occuring today or null if no holidays
var/wizardmode = FALSE