Merge pull request #4896 from Citadel-Station-13/upstream-merge-34507

[MIRROR] Add JMP buttons to SDQL select results
This commit is contained in:
deathride58
2018-01-17 20:13:51 +00:00
committed by GitHub
+3 -3
View File
@@ -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)]<br>"
text += ": [t] <font color='gray'>at turf</font> [T] [ADMIN_COORDJMP(T)]<br>"
else if(a.loc && istype(actual))
text += ": [t] in [a.loc] at turf [actual] [COORD(actual)]<br>"
text += ": [t] <font color='gray'>in</font> [a.loc] <font color='gray'>at turf</font> [actual] [ADMIN_COORDJMP(actual)]<br>"
else
text += ": [t]<br>"
else