Adjusted event announcement delays.

Also improved some radiation belt announcements.
This commit is contained in:
cib
2013-05-23 20:15:45 +02:00
parent ce19719700
commit b1b448e0ee
3 changed files with 4 additions and 4 deletions

View File

@@ -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)

View File

@@ -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")
command_alert("The station has passed the radiation belt. Please report to medbay if you experience any unusual symptoms.", "Anomaly Alert")

View File

@@ -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)