From 6440d79d2845644c9021225f0a7d542f5d5861cf Mon Sep 17 00:00:00 2001 From: Ryan784 Date: Thu, 4 Feb 2016 17:04:45 -0500 Subject: [PATCH] Updates to dev verbs Added in jumping to places as aghost, as opposed to having to fly there manually to see/bugfix. --- code/modules/admin/admin_verbs.dm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index a9841a991cf..f7939661719 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -304,10 +304,16 @@ var/list/admin_verbs_mentor = list( ) var/list/admin_verbs_dev = list( //will need to be altered - Ryan784 - /datum/admins/proc/restart, + ///datum/admins/proc/restart, /datum/admins/proc/spawn_atom, //allows us to spawn instances, /datum/admins/proc/delay, + /client/proc/Jump, + /client/proc/jumptokey, /*allows us to jump to the location of a mob with a certain ckey*/ + /client/proc/jumptomob, /*allows us to jump to a specific mob*/ + /client/proc/jumptoturf, /*allows us to jump to a specific turf*/ + /client/proc/cmd_admin_pm_context, /client/proc/cmd_admin_pm_panel, //admin-pm list + /client/proc/jumptocoord, /*we ghost and jump to a coordinate*/ /client/proc/cmd_dev_say, /client/proc/nanomapgen_DumpImage, /client/proc/admin_ghost,