From 69b902503e57fdd7881c3516bd492c70fa4c2995 Mon Sep 17 00:00:00 2001 From: Kyep Date: Sat, 26 Jan 2019 18:40:53 -0800 Subject: [PATCH] Fixes admin co-ord jump --- code/modules/admin/verbs/adminjump.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/admin/verbs/adminjump.dm b/code/modules/admin/verbs/adminjump.dm index 562f087dbb5..a8053e1faed 100644 --- a/code/modules/admin/verbs/adminjump.dm +++ b/code/modules/admin/verbs/adminjump.dm @@ -71,6 +71,9 @@ var/turf/T = locate(tx, ty, tz) if(T) admin_forcemove(usr, T) + if(isobserver(usr)) + var/mob/dead/observer/O = usr + O.ManualFollow(T) feedback_add_details("admin_verb","JC") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! if(!isobserver(usr)) message_admins("[key_name_admin(usr)] jumped to coordinates [tx], [ty], [tz]")