From 2917943cfb0b6b4d4e15e9eb4d7edd2600b8b152 Mon Sep 17 00:00:00 2001 From: PollardTheDragon <144391971+PollardTheDragon@users.noreply.github.com> Date: Fri, 11 Apr 2025 14:07:39 -0400 Subject: [PATCH] Smith polish - sound fixes (#28949) --- code/modules/smithing/machinery/casting_basin.dm | 2 +- code/modules/smithing/machinery/power_hammer.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/smithing/machinery/casting_basin.dm b/code/modules/smithing/machinery/casting_basin.dm index 5cdda3a5de3..24f8c1b1be5 100644 --- a/code/modules/smithing/machinery/casting_basin.dm +++ b/code/modules/smithing/machinery/casting_basin.dm @@ -219,7 +219,7 @@ return FINISH_ATTACK to_chat(user, "You begin to pour the liquid minerals into the [src]...") - playsound(src, 'sound/machines/recycler.ogg', 50, TRUE) + playsound(src, 'sound/machines/recycler.ogg', 50, FALSE) // Use the materials and create the item. materials.use_amount(temp_product.materials, amount) linked_crucible.animate_pour(operation_time SECONDS) diff --git a/code/modules/smithing/machinery/power_hammer.dm b/code/modules/smithing/machinery/power_hammer.dm index 425f09e23ac..cf81281be79 100644 --- a/code/modules/smithing/machinery/power_hammer.dm +++ b/code/modules/smithing/machinery/power_hammer.dm @@ -56,7 +56,7 @@ operate(loops, user) // When an item is done, beep. if(!working_component.hammer_time) - playsound(src, 'sound/machines/boop.ogg', 50, TRUE) + playsound(src, 'sound/machines/boop.ogg', 50, FALSE) /obj/machinery/smithing/power_hammer/multitool_act(mob/living/user, obj/item/I) . = TRUE