From 2e72d344d7a583d5a6b1e98f7e43cecc57feaa72 Mon Sep 17 00:00:00 2001 From: SyncIt21 <110812394+SyncIt21@users.noreply.github.com> Date: Sun, 14 May 2023 23:43:08 +0530 Subject: [PATCH] [NO GBP] Fixes signal override and probably other related runtimes during area editing with station blueprints (#75146) ## About The Pull Request Fixes a tiny mistake i made in #73850 which caused a hell a lot of signal override runtimes during area editing with station blueprints. It happens allow it. ## Changelog :cl: fix: signal override & other area sensitive runtimes during area editing with station blueprints /:cl: --- code/__HELPERS/areas.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/__HELPERS/areas.dm b/code/__HELPERS/areas.dm index d1bad98a1c6..932df589e0c 100644 --- a/code/__HELPERS/areas.dm +++ b/code/__HELPERS/areas.dm @@ -158,7 +158,7 @@ GLOBAL_LIST_INIT(typecache_powerfailure_safe_areas, typecacheof(/area/station/en //inform atoms on the turf that their area has changed for(var/atom/stuff as anything in the_turf) //unregister the stuff from its old area - SEND_SIGNAL(stuff, COMSIG_EXIT_AREA, oldA) + SEND_SIGNAL(stuff, COMSIG_EXIT_AREA, old_area) //register the stuff to its new area. special exception for apc as its not registered to this signal if(istype(stuff, /obj/machinery/power/apc))