From b3b3b38f34c458da41965e2c3a38b2e835f61d54 Mon Sep 17 00:00:00 2001 From: Tad Hardesty Date: Mon, 15 Jan 2018 21:40:05 -0800 Subject: [PATCH] Add JMP buttons to SDQL select results --- code/modules/admin/verbs/SDQL2/SDQL_2.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/admin/verbs/SDQL2/SDQL_2.dm b/code/modules/admin/verbs/SDQL2/SDQL_2.dm index 0421807abec..7c610f41d82 100644 --- a/code/modules/admin/verbs/SDQL2/SDQL_2.dm +++ b/code/modules/admin/verbs/SDQL2/SDQL_2.dm @@ -95,7 +95,7 @@ for(var/datum/d in objs) world.SDQL_var(d, query_tree["call"][1], source = d) CHECK_TICK - + if("delete") for(var/datum/d in objs) SDQL_qdel_datum(d) @@ -133,9 +133,9 @@ var/turf/T = a.loc var/turf/actual = get_turf(a) if(istype(T)) - text += ": [t] at turf [T] [COORD(T)]
" + text += ": [t] at turf [T] [ADMIN_COORDJMP(T)]
" else if(a.loc && istype(actual)) - text += ": [t] in [a.loc] at turf [actual] [COORD(actual)]
" + text += ": [t] in [a.loc] at turf [actual] [ADMIN_COORDJMP(actual)]
" else text += ": [t]
" else