From 6847ef3db562dd256aae95382902c96e00231b64 Mon Sep 17 00:00:00 2001 From: Putnam3145 Date: Thu, 18 Aug 2022 01:13:05 -0700 Subject: [PATCH 1/2] sandstorm nerf --- code/modules/events/dust.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/events/dust.dm b/code/modules/events/dust.dm index 3bece46dcd..c854f3b5a4 100644 --- a/code/modules/events/dust.dm +++ b/code/modules/events/dust.dm @@ -19,7 +19,7 @@ typepath = /datum/round_event/sandstorm weight = 5 max_occurrences = 1 - min_players = 5 + min_players = 10 earliest_start = 20 MINUTES /datum/round_event/sandstorm @@ -29,4 +29,4 @@ fakeable = FALSE /datum/round_event/sandstorm/tick() - spawn_meteors(10, GLOB.meteorsC) + spawn_meteors(rand(6,10), GLOB.meteorsC) From 81cbda5cdab65d6ff1d615f36c81ac88186221e7 Mon Sep 17 00:00:00 2001 From: Putnam3145 Date: Thu, 18 Aug 2022 01:15:34 -0700 Subject: [PATCH 2/2] announcement too --- code/modules/events/dust.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/events/dust.dm b/code/modules/events/dust.dm index c854f3b5a4..39c04003a9 100644 --- a/code/modules/events/dust.dm +++ b/code/modules/events/dust.dm @@ -28,5 +28,8 @@ announceWhen = 0 fakeable = FALSE +/datum/round_event/sandstorm/announce(fake) + priority_announce("The station is passing through a heavy debris cloud. Watch out for breaches.", "Collision Alert") + /datum/round_event/sandstorm/tick() spawn_meteors(rand(6,10), GLOB.meteorsC)