diff --git a/code/modules/clothing/accessories/hands.dm b/code/modules/clothing/accessories/hands.dm index befe128fc71..2ac4386e6a2 100644 --- a/code/modules/clothing/accessories/hands.dm +++ b/code/modules/clothing/accessories/hands.dm @@ -25,7 +25,7 @@ icon = 'icons/inventory/accessory/item.dmi' icon_state = "bracelet" w_class = ITEMSIZE_TINY - slot_flags = SLOT_GLOVES + slot_flags = SLOT_GLOVES | SLOT_TIE slot = ACCESSORY_SLOT_WRIST /obj/item/clothing/accessory/bracelet/friendship @@ -102,7 +102,7 @@ icon = 'icons/inventory/accessory/item.dmi' icon_state = "wristband" w_class = ITEMSIZE_TINY - slot_flags = SLOT_GLOVES + slot_flags = SLOT_GLOVES | SLOT_TIE slot = ACCESSORY_SLOT_WRIST /obj/item/clothing/accessory/wristband/spiked diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm index a69ddf2ab0e..9f8d9e9db24 100644 --- a/code/modules/clothing/clothing.dm +++ b/code/modules/clothing/clothing.dm @@ -854,7 +854,9 @@ |ACCESSORY_SLOT_TIE\ |ACCESSORY_SLOT_RANK\ |ACCESSORY_SLOT_DEPT\ - |ACCESSORY_SLOT_OVER) + |ACCESSORY_SLOT_OVER\ + |ACCESSORY_SLOT_RING\ + |ACCESSORY_SLOT_WRIST) restricted_accessory_slots = (\ ACCESSORY_SLOT_UTILITY\ |ACCESSORY_SLOT_WEAPON\