From 860b47d3dc7930af25efab7685117df76fdd257d Mon Sep 17 00:00:00 2001 From: Anewbe Date: Sun, 24 Sep 2017 16:40:10 -0500 Subject: [PATCH] Fixes the issue with spawn points --- code/game/jobs/job_controller.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/game/jobs/job_controller.dm b/code/game/jobs/job_controller.dm index 082ab9240d..9e3efc53da 100644 --- a/code/game/jobs/job_controller.dm +++ b/code/game/jobs/job_controller.dm @@ -624,8 +624,10 @@ var/global/datum/controller/occupations/job_master . = spawnpos.msg else H << "Your chosen spawnpoint ([spawnpos.display_name]) is unavailable for your chosen job. Spawning you at the Arrivals shuttle instead." - H.forceMove(pick(latejoin)) + var/spawning = pick(latejoin) + H.forceMove(get_turf(spawning)) . = "will arrive to the station shortly by shuttle" else - H.forceMove(pick(latejoin)) + var/spawning = pick(latejoin) + H.forceMove(get_turf(spawning)) . = "has arrived on the station"