Skip to content

Commit

Permalink
[MIRROR] fix shuttle docking issue
Browse files Browse the repository at this point in the history
  • Loading branch information
MuckerMayhem authored and SuhEugene committed Jan 23, 2024
1 parent dea99db commit d236fc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/_helpers/turfs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@
if (QDELETED(O))
testing("Failed to translate [O] to new turf as it was qdel'd.")
continue
if(O.simulated || istype(O, /obj/shuttle_landmark) || istype(O, /obj/submap_landmark))
if(O.simulated || HAS_FLAGS(O.movable_flags, MOVABLE_FLAG_EFFECTMOVE))
O.forceMove(new_turf)
else if(istype(O,/obj/effect))
var/obj/E = O
Expand Down

0 comments on commit d236fc6

Please sign in to comment.