From 3aa103feafc160255414a8bb1b29be3cee1b23e5 Mon Sep 17 00:00:00 2001 From: ihatethisengine <115417687+ihatethisengine@users.noreply.github.com> Date: Mon, 13 May 2024 04:49:27 +0300 Subject: [PATCH] Fixes infinite lifeboat alarm after queen locking (#6260) # About the pull request Fixes infinite lifeboat alarm after queen locking # Explain why it's good for the game Fixes infinite lifeboat alarm after queen locking # Testing Photographs and Procedure
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags.
# Changelog :cl: ihatethisengine fix: Fixes infinite lifeboat alarm after queen locking /:cl: --- code/modules/shuttle/computer.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/shuttle/computer.dm b/code/modules/shuttle/computer.dm index 5f96de812819..2b3407fa9414 100644 --- a/code/modules/shuttle/computer.dm +++ b/code/modules/shuttle/computer.dm @@ -440,6 +440,8 @@ lifeboat.status = LIFEBOAT_LOCKED lifeboat.available = FALSE lifeboat.set_mode(SHUTTLE_IDLE) + lifeboat.alarm_sound_loop?.stop() + lifeboat.playing_launch_announcement_alarm = FALSE var/obj/docking_port/stationary/lifeboat_dock/lifeboat_dock = lifeboat.get_docked() lifeboat_dock.open_dock() xeno_message(SPAN_XENOANNOUNCE("We have wrested away control of one of the metal birds! They shall not escape!"), 3, xeno.hivenumber)