Dynamic Mode for reals

Here we go.
This commit is contained in:
JaySparrow
2020-09-24 23:54:21 -05:00
parent 33e5ad2dec
commit bb8e2a91bd
19 changed files with 3875 additions and 7 deletions
+2
View File
@@ -52,6 +52,8 @@ SUBSYSTEM_DEF(events)
//decides which world.time we should select another random event at.
/datum/controller/subsystem/events/proc/reschedule()
scheduled = world.time + rand(frequency_lower, max(frequency_lower,frequency_upper))
if(GLOB.master_mode == "dynamic")
scheduled = INFINITY //HYPER CHANGE - Easy way to bypass the basic event handler.
//selects a random event based on whether it can occur and it's 'weight'(probability)
/datum/controller/subsystem/events/proc/spawnEvent()