Skip to content

Commit 81aa47d

Browse files
adjust disaster level timing
1 parent d761a9d commit 81aa47d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

code/controllers/configuration/sections/event_configuration.dm

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,23 @@
66
var/list/first_run_times = list(
77
EVENT_LEVEL_MUNDANE = null,
88
EVENT_LEVEL_MODERATE = null,
9-
EVENT_LEVEL_MAJOR = list("lower" = 30 MINUTES, "upper" = 40 MINUTES),
10-
EVENT_LEVEL_DISASTER = list("lower" = 35 MINUTES, "upper" = 50 MINUTES)
9+
EVENT_LEVEL_MAJOR = list("lower" = 20 MINUTES, "upper" = 30 MINUTES),
10+
EVENT_LEVEL_DISASTER = list("lower" = 30 MINUTES, "upper" = 45 MINUTES)
1111
) // <---- Whoever designed this needs to be shot
1212

1313
/// Assoc list of lower bounds of event delays. key: severity | value: delay (deciseconds)
1414
var/list/delay_lower_bound = list(
1515
EVENT_LEVEL_MUNDANE = 5 MINUTES,
1616
EVENT_LEVEL_MODERATE = 15 MINUTES,
1717
EVENT_LEVEL_MAJOR = 20 MINUTES,
18-
EVENT_LEVEL_DISASTER = 45 MINUTES
18+
EVENT_LEVEL_DISASTER = 35 MINUTES
1919
)
2020
/// Assoc list of lower bounds of event delays. key: severity | value: delay (deciseconds)
2121
var/list/delay_upper_bound = list(
2222
EVENT_LEVEL_MUNDANE = 7.5 MINUTES,
2323
EVENT_LEVEL_MODERATE = 22.5 MINUTES,
2424
EVENT_LEVEL_MAJOR = 30 MINUTES,
25-
EVENT_LEVEL_DISASTER = 50 MINUTES
25+
EVENT_LEVEL_DISASTER = 45 MINUTES
2626
)
2727
/// Expected time of a round in deciseconds
2828
var/expected_round_length = 120 MINUTES // This macro is equivilent to 72,000 deciseconds

0 commit comments

Comments
 (0)