[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
🆑
fix: signal override & other area sensitive runtimes during area editing
with station blueprints
/🆑
This commit is contained in:
SyncIt21
2023-05-14 14:13:08 -04:00
committed by GitHub
parent 9686971c76
commit 2e72d344d7
+1 -1
View File
@@ -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))