From 340b486a21e128a5e822e0759f66abf9a26e5e2a Mon Sep 17 00:00:00 2001 From: EgorDinamit Date: Sat, 23 Sep 2023 23:31:37 +0300 Subject: [PATCH] Fix multi-tile doors --- 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()