From 83b11d6389fc439d95aaceb594625f55ceeeb84a Mon Sep 17 00:00:00 2001 From: EgorDinamit <53223414+EgorDinamit@users.noreply.github.com> Date: Sat, 23 Sep 2023 23:40:39 +0300 Subject: [PATCH] Fix multi-tile doors (#477) --- code/game/machinery/doors/door.dm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/code/game/machinery/doors/door.dm b/code/game/machinery/doors/door.dm index e1c04a98bc3..667825524b3 100644 --- a/code/game/machinery/doors/door.dm +++ b/code/game/machinery/doors/door.dm @@ -75,9 +75,6 @@ else layer = open_layer - - update_bounds() - if (turf_hand_priority) set_extension(src, /datum/extension/turf_hand, turf_hand_priority) @@ -99,6 +96,7 @@ /obj/machinery/door/LateInitialize() ..() + update_bounds() if(autoset_access) // Delayed because apparently the dir is not set by mapping and we need to wait for nearby walls to init and turn us. inherit_access_from_area()