From f347fc55fd6e6cdbc5ee06ca83d365fad1f9060c Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Mon, 26 May 2014 15:53:30 -0400 Subject: [PATCH] Revert "Fix rad alert lighting." This reverts commit e887dbe9b62ee1b97f57b42d6f257ef7ff44843f. --- code/modules/events/radiation_storm.dm | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/code/modules/events/radiation_storm.dm b/code/modules/events/radiation_storm.dm index 750bc04341b..a288f61a0f9 100644 --- a/code/modules/events/radiation_storm.dm +++ b/code/modules/events/radiation_storm.dm @@ -29,8 +29,7 @@ for(var/area/A in world) if(A.z != 1 || is_safe_zone(A)) continue - var/area/ma = get_area_master(A) - ma.radiation_alert() + A.radiation_alert() make_maint_all_access() @@ -75,8 +74,7 @@ for(var/area/A in world) if(A.z != 1 || is_safe_zone(A)) continue - var/area/ma = get_area_master(A) - ma.reset_radiation_alert() + A.reset_radiation_alert() sleep(600) // Want to give them time to get out of maintenance.