Skip to content

Commit

Permalink
fixes crash spawns and cryopod dirs (#259)
Browse files Browse the repository at this point in the history
  • Loading branch information
Helg2 authored Sep 8, 2024
1 parent c6f1c5a commit 2e98807
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
4 changes: 3 additions & 1 deletion _maps/shuttles/tgs_bigbury.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -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" = (
Expand Down
4 changes: 3 additions & 1 deletion _maps/shuttles/tgs_canterbury.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -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" = (
Expand Down
3 changes: 3 additions & 0 deletions code/datums/gamemodes/crash.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions code/datums/gamemodes/last_stand.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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()
. = ..()
Expand Down

0 comments on commit 2e98807

Please sign in to comment.