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)