From e887dbe9b62ee1b97f57b42d6f257ef7ff44843f Mon Sep 17 00:00:00 2001 From: Rob Nelson Date: Fri, 21 Mar 2014 20:42:22 -0700 Subject: [PATCH] Fix rad alert lighting. --- code/modules/events/radiation_storm.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/modules/events/radiation_storm.dm b/code/modules/events/radiation_storm.dm index a288f61a0f9..750bc04341b 100644 --- a/code/modules/events/radiation_storm.dm +++ b/code/modules/events/radiation_storm.dm @@ -29,7 +29,8 @@ for(var/area/A in world) if(A.z != 1 || is_safe_zone(A)) continue - A.radiation_alert() + var/area/ma = get_area_master(A) + ma.radiation_alert() make_maint_all_access() @@ -74,7 +75,8 @@ for(var/area/A in world) if(A.z != 1 || is_safe_zone(A)) continue - A.reset_radiation_alert() + var/area/ma = get_area_master(A) + ma.reset_radiation_alert() sleep(600) // Want to give them time to get out of maintenance.