diff --git a/code/modules/events/dust.dm b/code/modules/events/dust.dm index 61a792384c5..2aa71f91233 100644 --- a/code/modules/events/dust.dm +++ b/code/modules/events/dust.dm @@ -13,3 +13,18 @@ /datum/round_event/space_dust/start() spawn_meteors(1, meteorsC) + +/datum/round_event_control/sandstorm + name = "Sandstorm" + typepath = /datum/round_event/sandstorm + weight = 0 + max_occurrences = 0 + earliest_start = 0 + +/datum/round_event/sandstorm + startWhen = 1 + endWhen = 150 // ~5 min + announceWhen = 0 + +/datum/round_event/sandstorm/tick() + spawn_meteors(10, meteorsC) \ No newline at end of file