Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes evac pods launching with more than three occupants #5335

Merged
merged 1 commit into from Dec 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions code/modules/shuttle/shuttles/crashable/escape_shuttle.dm
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@
for(var/mob/living/occupant in interior_area)
occupant_count++
for(var/obj/structure/machinery/cryopod/evacuation/cryotube in interior_area)
if(cryotube.occupant)
occupant_count++
cryos += list(cryotube)
if (occupant_count > max_capacity)
playsound(src,'sound/effects/escape_pod_warmup.ogg', 50, 1)
Expand Down
Loading