From b9d9b3c88d7b63c1d665a2ccdbec8bb0b7524c3d Mon Sep 17 00:00:00 2001 From: Ty-Omaha Date: Mon, 15 Jul 2019 09:10:00 -0400 Subject: [PATCH] k --- code/modules/events/grid_check.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/events/grid_check.dm b/code/modules/events/grid_check.dm index 15b20c6286e..a1668c58e3a 100644 --- a/code/modules/events/grid_check.dm +++ b/code/modules/events/grid_check.dm @@ -47,7 +47,7 @@ C.cell.charge = 0 for(var/obj/machinery/power/P in GLOB.machines) var/area/current_area = get_area(P) - if((current_area.type in skipped_areas_apc) || !is_station_level(P.z)) + if((current_area.type in skipped_areas_apc) || (current_area.type in skipped_areas) || !is_station_level(P.z)) continue P.malfunction = TRUE @@ -74,7 +74,7 @@ S.power_change() for(var/obj/machinery/power/P in GLOB.machines) var/area/current_area = get_area(P) - if((current_area.type in skipped_areas_apc) || !is_station_level(P.z)) + if((current_area.type in skipped_areas_apc) || (current_area.type in skipped_areas) || !is_station_level(P.z)) continue P.malfunction = FALSE