Fixes selecting datums through SDQL2

This commit is contained in:
Krausus
2016-09-26 04:54:34 -04:00
parent e5de2cb483
commit f010e142ce
+5
View File
@@ -252,6 +252,11 @@
if(istype(d, type))
out += d
else if(location == world)
for(var/datum/d)
if(istype(d, type))
out += d
else
for(var/datum/d in location)
if(istype(d, type))