From a0c3a97d94b7f6cc0801b8cec27337df277ffb7a Mon Sep 17 00:00:00 2001 From: SmArtKar <44720187+SmArtKar@users.noreply.github.com> Date: Wed, 16 Jul 2025 03:07:59 +0200 Subject: [PATCH] Fixes equipping items onto other people playing swing animations (#92104) --- code/game/objects/items.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm index 1959a27ccbb..342944fd108 100644 --- a/code/game/objects/items.dm +++ b/code/game/objects/items.dm @@ -1963,7 +1963,7 @@ else if(victim_human.is_blind()) to_chat(target, span_userdanger("You feel someone trying to put something on you.")) - user.do_item_attack_animation(target, used_item = equipping) + user.do_item_attack_animation(target, used_item = equipping, animation_type = ATTACK_ANIMATION_BLUNT) to_chat(user, span_notice("You try to put [equipping] on [target]..."))