Merge pull request #9424 from VOREStation/upstream-merge-7773

[MIRROR] Fixes unreachable landmarks breaking spacetravel
This commit is contained in:
Novacat
2020-12-07 22:34:31 -05:00
committed by Chompstation Bot
parent 9dd98526f6
commit 46a3ef1d35

View File

@@ -85,6 +85,10 @@ proc/overmap_spacetravel(var/turf/space/T, var/atom/movable/A)
if (!M)
return
// Is the landmark still on the map.
if(!isturf(M.loc))
return
// Don't let AI eyes yeet themselves off the map
if(istype(A, /mob/observer/eye))
return