From 332cc910898bd6ab346ce628c12e498b582d1e27 Mon Sep 17 00:00:00 2001 From: Sierra Helper <125094432+SierraHelper@users.noreply.github.com> Date: Tue, 26 Nov 2024 18:23:36 +0300 Subject: [PATCH] [MIRROR] Fixes escape pods not repressurizing after launch (#2869) Co-authored-by: Hubblenaut <6383576+Hubblenaut@users.noreply.github.com> Co-authored-by: Lexanx <61974560+Lexanx@users.noreply.github.com> --- code/modules/shuttles/escape_pods.dm | 4 ++-- maps/event/iccgn_ship/icgnv_hound.dm | 1 + maps/event/sfv_arbiter/sfv_arbiter.dm | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/code/modules/shuttles/escape_pods.dm b/code/modules/shuttles/escape_pods.dm index 1c46fb598beae..3a8c5ba6d369b 100644 --- a/code/modules/shuttles/escape_pods.dm +++ b/code/modules/shuttles/escape_pods.dm @@ -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) diff --git a/maps/event/iccgn_ship/icgnv_hound.dm b/maps/event/iccgn_ship/icgnv_hound.dm index 8cc89dd8606d9..93bd0bc5d4af4 100644 --- a/maps/event/iccgn_ship/icgnv_hound.dm +++ b/maps/event/iccgn_ship/icgnv_hound.dm @@ -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" diff --git a/maps/event/sfv_arbiter/sfv_arbiter.dm b/maps/event/sfv_arbiter/sfv_arbiter.dm index 498ac71a4a673..9e9456dfafdd5 100644 --- a/maps/event/sfv_arbiter/sfv_arbiter.dm +++ b/maps/event/sfv_arbiter/sfv_arbiter.dm @@ -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"