From c2d8304b94b9a338a755d9be29265b90036c24ac Mon Sep 17 00:00:00 2001 From: morrowwolf Date: Mon, 11 Sep 2023 01:22:26 -0400 Subject: [PATCH] Removes annoying and inaccurate to_chat from join response team menu (#4358) # About the pull request Removes annoying and inaccurate to_chat from join response team menu # Explain why it's good for the game It keeps bugging me # Testing Photographs and Procedure
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags.
# Changelog :cl: Morrow fix: Removed annoying and inaccurate to_chat from join response team menu /:cl: --- code/datums/emergency_calls/emergency_call.dm | 1 - 1 file changed, 1 deletion(-) diff --git a/code/datums/emergency_calls/emergency_call.dm b/code/datums/emergency_calls/emergency_call.dm index 6d41c2d64d0b..390a8cfd5d61 100644 --- a/code/datums/emergency_calls/emergency_call.dm +++ b/code/datums/emergency_calls/emergency_call.dm @@ -155,7 +155,6 @@ var/choice = tgui_input_list(src, "Choose a distress beacon to join", "", beacons) if(!choice) - to_chat(src, "Something seems to have gone wrong!") return if(!beacons[choice] || !(beacons[choice] in SSticker.mode.picked_calls))