Fixes single pane windows not blocking airborne viruses completely.

This commit is contained in:
Chinsky
2014-03-14 02:10:05 -04:00
committed by ZomgPonies
parent a775e925be
commit b5f3e62bf9
+1 -1
View File
@@ -44,7 +44,7 @@ proc/airborne_can_reach(turf/source, turf/target, var/radius=5)
for(var/i=0, i<radius, i++) if(!step_towards(dummy, target)) break
var/rval = (dummy.loc in range(1,target))
var/rval = dummy.Adjacent(target)
dummy.loc = null
dummy = null
return rval