From bfa5aa847e733bb8d2866938aed98a5864c0062e Mon Sep 17 00:00:00 2001 From: ElGitificador <168473461+ElGitificador@users.noreply.github.com> Date: Thu, 15 Jan 2026 00:55:53 +0100 Subject: [PATCH] fixes bear suit not hiding your hands (#94859) ## About The Pull Request fixes #92341. ## Why It's Good For The Game muh bear larping ## Changelog :cl: fix: fixed bear suit not hiding hands /:cl: --- code/modules/clothing/suits/costume.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/clothing/suits/costume.dm b/code/modules/clothing/suits/costume.dm index f63e2ffecd6..14a2bbeec78 100644 --- a/code/modules/clothing/suits/costume.dm +++ b/code/modules/clothing/suits/costume.dm @@ -706,7 +706,7 @@ icon_state = "bear" worn_icon_state = "bear" inhand_icon_state = null - body_parts_covered = CHEST|GROIN|ARMS|LEGS + body_parts_covered = CHEST|GROIN|ARMS|LEGS|HANDS flags_inv = HIDEGLOVES|HIDESHOES|HIDEJUMPSUIT ///Are we friendly with bears (wearing the full head/suit combo)? var/full_suit = FALSE