Fix Windows, I don't know why it worked without this when it didn't before but fuck if I question BYOND today.

This commit is contained in:
Mechoid
2019-05-03 21:27:58 -07:00
parent 3d49cdb59a
commit c8a4190f87

View File

@@ -83,7 +83,7 @@ Quick adjacency (to turf):
if(!isturf(loc)) return 0
for(var/turf/T in locs)
if(isnull(T)) continue
if(T.Adjacent(neighbor,T)) return 1
if(T.Adjacent(neighbor,src)) return 1
return 0
// This is necessary for storage items not on your person.