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