From 4f2e4271fd4f798a7bad807b17bd6c26268ebbec Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Thu, 15 Aug 2024 11:39:51 +0200 Subject: [PATCH] [MIRROR] Durathread bundles and sinew make their proper noises instead of metal clang sounds. (#29330) * Durathread bundles and sinew make their proper noises instead of metal clang sounds. (#85485) ## About The Pull Request Adds cloth noises to durathread bundles and meat noises to sinew strands to stop them from making metal clang noises. ## Why It's Good For The Game Fixes https://github.com/tgstation/tgstation/issues/85433, fixes https://github.com/tgstation/tgstation/issues/85503 ## Changelog :cl: fix: Raw durathread bundles and sinew strands no longer make metal clang sounds. /:cl: * Durathread bundles and sinew make their proper noises instead of metal clang sounds. --------- Co-authored-by: Astrogem2 <101240878+Astrogem2@users.noreply.github.com> --- code/game/objects/items/stacks/sheets/leather.dm | 2 ++ code/game/objects/items/stacks/sheets/sheet_types.dm | 2 ++ 2 files changed, 4 insertions(+) diff --git a/code/game/objects/items/stacks/sheets/leather.dm b/code/game/objects/items/stacks/sheets/leather.dm index 1f13ec34a76..a58eece0631 100644 --- a/code/game/objects/items/stacks/sheets/leather.dm +++ b/code/game/objects/items/stacks/sheets/leather.dm @@ -245,6 +245,8 @@ GLOBAL_LIST_INIT(leather_recipes, list ( \ icon_state = "sinew" novariants = TRUE merge_type = /obj/item/stack/sheet/sinew + drop_sound = 'sound/effects/meatslap.ogg' + pickup_sound = 'sound/effects/meatslap.ogg' /obj/item/stack/sheet/sinew/Initialize(mapload, new_amount, merge, list/mat_override, mat_amt) . = ..() diff --git a/code/game/objects/items/stacks/sheets/sheet_types.dm b/code/game/objects/items/stacks/sheets/sheet_types.dm index e1ceacb0a1e..873ddb9acf1 100644 --- a/code/game/objects/items/stacks/sheets/sheet_types.dm +++ b/code/game/objects/items/stacks/sheets/sheet_types.dm @@ -577,6 +577,8 @@ GLOBAL_LIST_INIT(durathread_recipes, list ( \ grind_results = list(/datum/reagent/cellulose = 20) var/loom_result = /obj/item/stack/sheet/cloth var/loom_time = 1 SECONDS + drop_sound = 'sound/items/handling/cloth_drop.ogg' + pickup_sound = 'sound/items/handling/cloth_pickup.ogg' /obj/item/stack/sheet/cotton/Initialize(mapload) . = ..()