From 4f2716f312b026def12281f343c71eba0610e432 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Tue, 16 Jan 2018 22:41:24 -0500 Subject: [PATCH 1/2] Merge pull request #34507 from AutomaticFrenzy/patch/sdql-jmp 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 0421807abe..7c610f41d8 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