From 47c70bbd4be79a05beba567f7d7a938179e159cb Mon Sep 17 00:00:00 2001 From: Alberyk Date: Fri, 8 Dec 2017 03:35:15 -0200 Subject: [PATCH] Fix ring runtimes (#3950) --- code/modules/clothing/clothing.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm index 7d0184e622d..e3e092bfd8f 100644 --- a/code/modules/clothing/clothing.dm +++ b/code/modules/clothing/clothing.dm @@ -267,7 +267,7 @@ BLIND // can't see anything /obj/item/clothing/gloves/mob_can_equip(mob/user, slot) var/mob/living/carbon/human/H = user if(slot && slot == slot_gloves) - if(H.gloves) + if(istype(H.gloves, /obj/item/clothing/ring)) ring = H.gloves if(!ring.undergloves) to_chat(user, "You are unable to wear \the [src] as \the [H.gloves] are in the way.")