From ea6e89f5f6a9e07c43d52f298e0ce3114663af2b Mon Sep 17 00:00:00 2001 From: VerySoft Date: Sun, 6 Feb 2022 22:54:34 -0500 Subject: [PATCH] Landmark edit Just make it add gateway landmarks to the latejoin list, since sometimes people spawn at the wrong place if their spawn point is set wrong. --- code/game/objects/effects/landmarks.dm | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/code/game/objects/effects/landmarks.dm b/code/game/objects/effects/landmarks.dm index f8601403819..fc6af6b2fd5 100644 --- a/code/game/objects/effects/landmarks.dm +++ b/code/game/objects/effects/landmarks.dm @@ -27,14 +27,9 @@ simulated = TRUE // delete_me = 1 return - //VOREStation Add end - if("Observer-Start") // Ghosts are the only thing that use the latejoin list afaik and it complains if there's nothing in the list. - latejoin += src - simulated = TRUE - return - //VOREStation Add end if("JoinLateGateway") latejoin_gateway += loc + latejoin += src //VOREStation Addition delete_me = 1 return if("JoinLateElevator")