From 18ace46af8fb1ae9eaf6953c4729510676c75dc2 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sat, 10 Mar 2018 23:09:15 -0600 Subject: [PATCH] [MIRROR] Improves the shuttle error to include jump links and destination (#5900) * Improves the shuttle error to include jump links and destination (#36305) * Improves the shuttle error to include jump links and destination --- code/modules/shuttle/shuttle.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/shuttle/shuttle.dm b/code/modules/shuttle/shuttle.dm index 6a8fd7b3a1..844d6c020f 100644 --- a/code/modules/shuttle/shuttle.dm +++ b/code/modules/shuttle/shuttle.dm @@ -521,7 +521,7 @@ if(SHUTTLE_CALL) var/error = initiate_docking(destination, preferred_direction) if(error && error & (DOCKING_NULL_DESTINATION | DOCKING_NULL_SOURCE)) - var/msg = "A mobile dock in transit exited initiate_docking() with an error. This is most likely a mapping problem: Error: [error], ([src]) ([previous])" + var/msg = "A mobile dock in transit exited initiate_docking() with an error. This is most likely a mapping problem: Error: [error], ([src]) ([previous][ADMIN_JMP(previous)] -> [destination][ADMIN_JMP(destination)])" WARNING(msg) message_admins(msg) mode = SHUTTLE_IDLE