From 780ab3a32b6dd0498d6a1bea08b65b96f6252d50 Mon Sep 17 00:00:00 2001 From: alex-gh Date: Wed, 23 Apr 2014 18:30:19 +0200 Subject: [PATCH] Added a random delay to mass hallucination announcement, made hallucinations more severe --- code/modules/events/tgevents/mass_hallucination.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/modules/events/tgevents/mass_hallucination.dm b/code/modules/events/tgevents/mass_hallucination.dm index 90fba19bdca..9241cc6217d 100644 --- a/code/modules/events/tgevents/mass_hallucination.dm +++ b/code/modules/events/tgevents/mass_hallucination.dm @@ -1,5 +1,8 @@ +/datum/event/mass_hallucination/setup() + announceWhen = rand(0, 20) + /datum/event/mass_hallucination/start() for(var/mob/living/carbon/C in living_mob_list) - C.hallucination += rand(20, 50) + C.hallucination += rand(50, 100) /datum/event/mass_hallucination/announce() command_alert("It seems that station [station_name()] is passing through a minor radiation field, this may cause some hallucination, but no further damage") \ No newline at end of file