From c8dde4385610c2eea82c6d0e08d5d62eecfb02ac Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Mon, 18 Mar 2024 14:13:44 -0400 Subject: [PATCH] fixes admin shuttles breaking the escape shuttle / not working (#24677) --- code/modules/shuttle/shuttle_manipulator.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/shuttle/shuttle_manipulator.dm b/code/modules/shuttle/shuttle_manipulator.dm index 9d8995c3d21..2103fed8513 100644 --- a/code/modules/shuttle/shuttle_manipulator.dm +++ b/code/modules/shuttle/shuttle_manipulator.dm @@ -194,7 +194,7 @@ intact for round sanity.") else if(S) // If successful, returns the mobile docking port - var/obj/docking_port/mobile/mdp = action_load(S) + var/obj/docking_port/mobile/mdp = action_load_old(S) if(mdp) usr.forceMove(get_turf(mdp)) message_admins("[key_name_admin(usr)] loaded [mdp] with the shuttle manipulator.")