Minor ZAS-related cleanup

This commit is contained in:
mwerezak
2015-04-28 23:00:56 -04:00
parent bb7cd10cbb
commit fbede7a193
4 changed files with 7 additions and 38 deletions
+1 -1
View File
@@ -50,7 +50,7 @@ atom/proc/c_airblock(turf/other)
#ifdef ZASDBG
ASSERT(isturf(other))
#endif
return !CanPass(null, other, 0, 0) + 2*!CanPass(null, other, 1.5, 1)
return (AIR_BLOCKED*!CanPass(null, other, 0, 0))|(ZONE_BLOCKED*!CanPass(null, other, 1.5, 1))
turf/c_airblock(turf/other)