From f4bc8e8d4e8d8aa4a8c5454539e470ee47e417c3 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Tue, 23 Jan 2024 05:01:05 +0100 Subject: [PATCH] [MIRROR] Make apcs actually play the tool sound when exposing their wires. (#26207) * Make apcs actually play the tool sound when exposing their wires. (#81031) ## About The Pull Request Single line change to `code/modules/power/apc/apc_tool_act.dm` to make it play the tool sound when you open/close the panel with a screwdriver, to make it consistent with almost everything else I tried. Sound? Fix? ## Why It's Good For The Game This was really annoying me while I was slamming the screwdriver cocktail into everything I could see to make sure it worked again. Everything within reach was doing it, but not this one. ## Changelog :cl: sound: APCs actually play the tool sound when exposing their wires. /:cl: * Make apcs actually play the tool sound when exposing their wires. --------- Co-authored-by: _0Steven <42909981+00-Steven@users.noreply.github.com> --- code/modules/power/apc/apc_tool_act.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/power/apc/apc_tool_act.dm b/code/modules/power/apc/apc_tool_act.dm index b35f4de3fba..e712f474464 100644 --- a/code/modules/power/apc/apc_tool_act.dm +++ b/code/modules/power/apc/apc_tool_act.dm @@ -77,6 +77,7 @@ return toggle_panel_open() balloon_alert(user, "wires [panel_open ? "exposed" : "unexposed"]") + W.play_tool_sound(src) update_appearance() return