From a2b80f7f5203418fcf9277ded4c8b88b6dd3bb46 Mon Sep 17 00:00:00 2001 From: AnturK Date: Thu, 4 Aug 2016 21:01:29 +0200 Subject: [PATCH] What song is this? --- code/modules/events/dust.dm | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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