From ab6c5ce28800101bc7d26ee9402305a5cf049700 Mon Sep 17 00:00:00 2001 From: warriorstar-orion Date: Mon, 10 Feb 2025 22:15:57 -0500 Subject: [PATCH] fix multi-tile airlocks not travelling with shuttles (#28336) --- code/modules/shuttle/on_move.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/shuttle/on_move.dm b/code/modules/shuttle/on_move.dm index 9fea2a3a4a1..865349748eb 100644 --- a/code/modules/shuttle/on_move.dm +++ b/code/modules/shuttle/on_move.dm @@ -7,7 +7,7 @@ update_light() if(rotation) shuttleRotate(rotation) - forceMove(T1) + abstract_move(T1) return 1 /obj/effect/landmark/shuttle_import/onShuttleMove()