From b1b448e0eea1f2fd9c4477aae87f70d0b15a9a1e Mon Sep 17 00:00:00 2001 From: cib Date: Thu, 23 May 2013 20:15:45 +0200 Subject: [PATCH] Adjusted event announcement delays. Also improved some radiation belt announcements. --- code/modules/events/organ_failure.dm | 2 +- code/modules/events/radiation_storm.dm | 4 ++-- code/modules/events/wallrot.dm | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/events/organ_failure.dm b/code/modules/events/organ_failure.dm index 2a6b0b6a372..6160523f0b8 100644 --- a/code/modules/events/organ_failure.dm +++ b/code/modules/events/organ_failure.dm @@ -2,7 +2,7 @@ datum/event/organ_failure var/severity = 1 datum/event/organ_failure/setup() - announceWhen = rand(0, 3000) + announceWhen = rand(0, 300) endWhen = announceWhen + 1 severity = rand(1, 3) diff --git a/code/modules/events/radiation_storm.dm b/code/modules/events/radiation_storm.dm index 18911c6181e..d9cca33e725 100644 --- a/code/modules/events/radiation_storm.dm +++ b/code/modules/events/radiation_storm.dm @@ -12,7 +12,7 @@ sleep(200) - command_alert("The station has entered the radiation belt. Please report to medbay if you experience any unusual symptoms.", "Anomaly Alert") + command_alert("The station has entered the radiation belt. Please remain in a sheltered area until we have passed the radiation belt.", "Anomaly Alert") for(var/i = 0, i < 10, i++) for(var/mob/living/carbon/human/H in living_mob_list) var/turf/T = get_turf(H) @@ -42,4 +42,4 @@ sleep(50) - command_alert("The station has passed the radiation belt", "Anomaly Alert") \ No newline at end of file + command_alert("The station has passed the radiation belt. Please report to medbay if you experience any unusual symptoms.", "Anomaly Alert") \ No newline at end of file diff --git a/code/modules/events/wallrot.dm b/code/modules/events/wallrot.dm index 02e33c52d78..13da0842b02 100644 --- a/code/modules/events/wallrot.dm +++ b/code/modules/events/wallrot.dm @@ -5,7 +5,7 @@ datum/event/wallrot var/severity = 1 datum/event/wallrot/setup() - announceWhen = rand(0, 3000) + announceWhen = rand(0, 300) endWhen = announceWhen + 1 severity = rand(5, 10)