From 758da0fdc8eebbab8025b715d33776ae69dfbe11 Mon Sep 17 00:00:00 2001 From: zzzmike <85382350+zzzmike@users.noreply.github.com> Date: Thu, 30 Nov 2023 19:16:29 -0800 Subject: [PATCH] Update tables_racks.dm --- code/game/objects/structures/tables_racks.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/game/objects/structures/tables_racks.dm b/code/game/objects/structures/tables_racks.dm index df6bb5c69ecc..3bc243bd1f63 100644 --- a/code/game/objects/structures/tables_racks.dm +++ b/code/game/objects/structures/tables_racks.dm @@ -275,6 +275,7 @@ if(user.a_intent == INTENT_HARM) if(user.grab_level > GRAB_AGGRESSIVE) if (prob(15)) M.apply_effect(5, WEAKEN) + playsound(loc, 'sound/weapons/thudswoosh.ogg', 25, 1, 7) M.apply_damage(8, def_zone = "head") user.visible_message(SPAN_DANGER("[user] slams [M]'s face against [src]!"), SPAN_DANGER("You slam [M]'s face against [src]!")) @@ -285,8 +286,9 @@ else if(user.grab_level >= GRAB_AGGRESSIVE) M.forceMove(loc) M.apply_effect(5, WEAKEN) - user.visible_message(SPAN_DANGER("[user] throws [M] on [src]."), - SPAN_DANGER("You throw [M] on [src].")) + playsound(loc, 'sound/weapons/thudswoosh.ogg', 25, 1, 7) + user.visible_message(SPAN_DANGER("[user] throws [M] on [src], stunning them!"), + SPAN_DANGER("You throw [M] on [src], stunning them!")) return if(HAS_TRAIT(W, TRAIT_TOOL_WRENCH) && !(user.a_intent == INTENT_HELP))