diff --git a/_maps/shuttles/tgs_bigbury.dmm b/_maps/shuttles/tgs_bigbury.dmm index b324d632df2..5371ba2d2b3 100644 --- a/_maps/shuttles/tgs_bigbury.dmm +++ b/_maps/shuttles/tgs_bigbury.dmm @@ -767,7 +767,9 @@ /turf/open/floor/mainship/cargo, /area/shuttle/canterbury) "te" = ( -/obj/machinery/cryopod, +/obj/machinery/cryopod{ + dir = 8 + }, /turf/open/floor/mainship/floor, /area/shuttle/canterbury) "tP" = ( diff --git a/_maps/shuttles/tgs_canterbury.dmm b/_maps/shuttles/tgs_canterbury.dmm index 9afb6644971..ed46d74a3a9 100644 --- a/_maps/shuttles/tgs_canterbury.dmm +++ b/_maps/shuttles/tgs_canterbury.dmm @@ -333,7 +333,9 @@ /turf/open/floor/mainship/mono, /area/shuttle/canterbury) "bn" = ( -/obj/machinery/cryopod, +/obj/machinery/cryopod{ + dir = 8 + }, /turf/open/floor/mainship/mono, /area/shuttle/canterbury) "bo" = ( diff --git a/code/datums/gamemodes/crash.dm b/code/datums/gamemodes/crash.dm index 7475fe91898..86f0512196d 100644 --- a/code/datums/gamemodes/crash.dm +++ b/code/datums/gamemodes/crash.dm @@ -57,6 +57,9 @@ for(var/job_type in shuttle.spawns_by_job) GLOB.spawns_by_job[job_type] = shuttle.spawns_by_job[job_type] + GLOB.start_squad_landmarks_list = null + GLOB.latejoin_squad_landmarks_list = null + GLOB.latejoin = shuttle.latejoins GLOB.latejoin_cryo = shuttle.latejoins GLOB.latejoin_gateway = shuttle.latejoins diff --git a/code/datums/gamemodes/last_stand.dm b/code/datums/gamemodes/last_stand.dm index d4b0fae477a..ad7bdde814f 100644 --- a/code/datums/gamemodes/last_stand.dm +++ b/code/datums/gamemodes/last_stand.dm @@ -68,6 +68,7 @@ GLOB.latejoin_gateway -= loc GLOB.start_squad_landmarks_list = null + GLOB.latejoin_squad_landmarks_list = null /datum/game_mode/last_stand/post_setup() . = ..()