From 3e2a9248b2ebba39123c3570d4d160f9ac032b15 Mon Sep 17 00:00:00 2001 From: ReddeyfishVor <36580397+ReddeyfishVor@users.noreply.github.com> Date: Fri, 23 Mar 2018 19:32:13 -0700 Subject: [PATCH] Radiation storms no longer hit outposts --- code/modules/events/radiation_storm.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/events/radiation_storm.dm b/code/modules/events/radiation_storm.dm index cad80ffb83..2dd11e000b 100644 --- a/code/modules/events/radiation_storm.dm +++ b/code/modules/events/radiation_storm.dm @@ -30,8 +30,8 @@ command_announcement.Announce("The station has passed the radiation belt. Please allow for up to one minute while radiation levels dissipate, and report to medbay if you experience any unusual symptoms. Maintenance will lose all access again shortly.", "Anomaly Alert") /datum/event/radiation_storm/proc/radiate() var/radiation_level = rand(15, 35) - for(var/z in using_map.station_levels) - radiation_repository.z_radiate(locate(1, 1, z), radiation_level, 1) + //for(var/z in using_map.station_levels) //VORESTATION: No safe areas outside of the core station + radiation_repository.z_radiate(locate(1, 1, 1), radiation_level, 1) for(var/mob/living/carbon/C in living_mob_list) var/area/A = get_area(C)