From 8c7ba2195e176cf0047fb9196d66f110fc7ee974 Mon Sep 17 00:00:00 2001 From: 1080pCat <96908085+1080pCat@users.noreply.github.com> Date: Tue, 16 Jul 2024 07:59:57 +1000 Subject: [PATCH] Fixes the doubled up toolsound on modsuits (#26220) --- code/modules/mod/mod_control.dm | 2 -- 1 file changed, 2 deletions(-) diff --git a/code/modules/mod/mod_control.dm b/code/modules/mod/mod_control.dm index 94d6d02466c..5198dab0ed1 100644 --- a/code/modules/mod/mod_control.dm +++ b/code/modules/mod/mod_control.dm @@ -296,7 +296,6 @@ return TRUE if(!core) return TRUE - wrench.play_tool_sound(src, 100) core.forceMove(drop_location()) update_charge_alert() return TRUE @@ -314,7 +313,6 @@ if(screwdriver.use_tool(src, user, 1 SECONDS)) if(active || activating) to_chat(user, "Deactivate the suit first!") - screwdriver.play_tool_sound(src, 100) to_chat(user, "Cover [open ? "closed" : "opened"]") open = !open return TRUE