mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-14 08:34:16 +01:00
Floorbots will no longer build floors over where shuttles are meant to arrive
Probably a few other things it does this for (like if there are any shuttles that aren't /area/shuttle)
This commit is contained in:
@@ -204,7 +204,7 @@
|
||||
src.target = T
|
||||
if(!src.target || src.target == null)
|
||||
for (var/turf/space/D in view(7,src))
|
||||
if(!(D in floorbottargets) && D != src.oldtarget && (D.loc.name != "Space"))
|
||||
if(!(D in floorbottargets) && D != src.oldtarget && (D.loc.name != "Space") && !istype(D.loc, /area/shuttle))
|
||||
src.oldtarget = D
|
||||
src.target = D
|
||||
break
|
||||
|
||||
Reference in New Issue
Block a user