From eb8b6e204ccf452bc970bf00052d42478dd7b28b Mon Sep 17 00:00:00 2001 From: Azarak Date: Mon, 5 Oct 2020 00:45:58 +0200 Subject: [PATCH] lowers events frequency (#1118) --- code/controllers/subsystem/events.dm | 6 ++++-- code/modules/events/radiation_storm.dm | 3 ++- code/modules/events/space_dragon.dm | 3 ++- code/modules/events/swarmer.dm | 3 ++- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/code/controllers/subsystem/events.dm b/code/controllers/subsystem/events.dm index 04fcb5d71c3..3b995a5e9b2 100644 --- a/code/controllers/subsystem/events.dm +++ b/code/controllers/subsystem/events.dm @@ -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 diff --git a/code/modules/events/radiation_storm.dm b/code/modules/events/radiation_storm.dm index c9142e20173..56b53643148 100644 --- a/code/modules/events/radiation_storm.dm +++ b/code/modules/events/radiation_storm.dm @@ -1,7 +1,8 @@ /datum/round_event_control/radiation_storm name = "Radiation Storm" typepath = /datum/round_event/radiation_storm - max_occurrences = 1 + //max_occurrences = 1 //ORIGINAL + max_occurrences = 0 //SKYRAT EDIT CHANGE - EVENTS /datum/round_event/radiation_storm diff --git a/code/modules/events/space_dragon.dm b/code/modules/events/space_dragon.dm index d81f512908b..f8ccaa51883 100644 --- a/code/modules/events/space_dragon.dm +++ b/code/modules/events/space_dragon.dm @@ -1,7 +1,8 @@ /datum/round_event_control/space_dragon name = "Spawn Space Dragon" typepath = /datum/round_event/ghost_role/space_dragon - max_occurrences = 1 + //max_occurrences = 1 //ORIGINAL + max_occurrences = 0 //SKYRAT EDIT CHANGE - EVENTS weight = 5 earliest_start = 35 MINUTES min_players = 20 diff --git a/code/modules/events/swarmer.dm b/code/modules/events/swarmer.dm index ffb79a43e72..6417886ec17 100644 --- a/code/modules/events/swarmer.dm +++ b/code/modules/events/swarmer.dm @@ -2,7 +2,8 @@ name = "Spawn Swarmer Beacon" typepath = /datum/round_event/spawn_swarmer weight = 8 - max_occurrences = 1 //Only once okay fam + //max_occurrences = 1 //Only once okay fam //ORIGINAL + max_occurrences = 0 //SKYRAT EDIT CHANGE - EVENTS earliest_start = 30 MINUTES min_players = 15