From 3c4a4ead4341608de16a00f5941f06fcbb1fceab Mon Sep 17 00:00:00 2001 From: Burzah <116982774+Burzah@users.noreply.github.com> Date: Wed, 12 Feb 2025 15:22:42 -0700 Subject: [PATCH] initial (#28311) --- code/modules/clothing/gloves/boxing_gloves.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/clothing/gloves/boxing_gloves.dm b/code/modules/clothing/gloves/boxing_gloves.dm index 2c2ab0f724b..e26b5310c6f 100644 --- a/code/modules/clothing/gloves/boxing_gloves.dm +++ b/code/modules/clothing/gloves/boxing_gloves.dm @@ -17,6 +17,7 @@ if(slot == ITEM_SLOT_GLOVES) var/mob/living/carbon/human/H = user style.teach(H, TRUE) + ADD_TRAIT(user, TRAIT_CHUNKYFINGERS, CLOTHING_TRAIT) /obj/item/clothing/gloves/boxing/dropped(mob/user) ..() @@ -25,6 +26,7 @@ var/mob/living/carbon/human/H = user if(H.get_item_by_slot(ITEM_SLOT_GLOVES) == src) style.remove(H) + REMOVE_TRAIT(user, TRAIT_CHUNKYFINGERS, CLOTHING_TRAIT) /obj/item/clothing/gloves/boxing/green icon_state = "boxinggreen"