From c79fa799002afd4a1eb0f557c889ae5e80fb26a4 Mon Sep 17 00:00:00 2001 From: Krausus Date: Sun, 1 Jan 2017 02:16:27 -0500 Subject: [PATCH] Fixes landmarks not being moved by shuttles --- code/modules/shuttle/on_move.dm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/code/modules/shuttle/on_move.dm b/code/modules/shuttle/on_move.dm index 815541f36bc..87c1dae41df 100644 --- a/code/modules/shuttle/on_move.dm +++ b/code/modules/shuttle/on_move.dm @@ -13,6 +13,12 @@ return 0 . = ..() +/obj/effect/landmark/onShuttleMove() + // Drop invisibility juuust enough to get moved + invisibility = 100 + . = ..() + invisibility = 101 + /obj/machinery/door/onShuttleMove() . = ..() if(!.)