Allow fighters to traverse overmap ships predictably

This commit is contained in:
Aronai Sieyes
2020-04-14 15:56:40 -04:00
parent c5b3be0123
commit 01d6b87d69
2 changed files with 78 additions and 5 deletions

View File

@@ -11,6 +11,8 @@
var/list/checked_turfs = list()
for(var/turf/T in locs)
var/turf/Tcheck = get_step(T, stepdir)
if(!Tcheck) //Map edge
continue
if(Tcheck in checked_turfs)
continue
if(Tcheck in locs)