Skip to content

Commit

Permalink
[MIRROR] Fixes escape pods not repressurizing after launch (#2869)
Browse files Browse the repository at this point in the history
Co-authored-by: Hubblenaut <[email protected]>
Co-authored-by: Lexanx <[email protected]>
  • Loading branch information
3 people authored Nov 26, 2024
1 parent 9fbb702 commit 332cc91
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/shuttles/escape_pods.dm
Original file line number Diff line number Diff line change
Expand Up @@ -342,9 +342,9 @@ var/global/list/escape_pods_by_name = list()
signal.data = list(
"tag" = tag_pump,
"sigtype" = "command",
"set_power" = 1, // [SIERRA-ADD], was "power" = 1,
"set_direction" = "release", // [SIERRA-ADD], was "direction" = 1,
"status" = TRUE, // [SIERRA-ADD],
"set_power" = 1,
"set_direction" = 1,
"set_external_pressure" = ONE_ATMOSPHERE
)
post_signal(signal)
Expand Down
1 change: 1 addition & 0 deletions maps/event/iccgn_ship/icgnv_hound.dm
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
description = "A standard ALFA-pattern, armed ICCGN transport shuttle. The transponder reads on open channels as ICCG and is broadcasting the designation 'ICGNV Hound' in Zurich Accord Common."
suffixes = list("maps/event/iccgn_ship/icgnv_hound.dmm")
shuttles_to_initialise = list(/datum/shuttle/autodock/overmap/icgnv_hound)
skip_main_unit_tests = "Ruin has shuttle landmark."

/obj/overmap/visitable/sector/icgnv_hound_space
name = "Sensor Anomaly"
Expand Down
1 change: 1 addition & 0 deletions maps/event/sfv_arbiter/sfv_arbiter.dm
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
description = "A fairly standard armed transport shuttle belonging to the Sol Fleet. It's transponder reads 'SFV Arbiter'."
suffixes = list("maps/event/sfv_arbiter/sfv_arbiter.dmm")
shuttles_to_initialise = list(/datum/shuttle/autodock/overmap/sfv_arbiter)
skip_main_unit_tests = "Ruin has shuttle landmark."

/obj/overmap/visitable/sector/sfv_arbiter_space
name = "Sensor Anomaly"
Expand Down

0 comments on commit 332cc91

Please sign in to comment.