From 0555c99872b7eb983acaba3254a3569e6839c4d6 Mon Sep 17 00:00:00 2001 From: Mechoid Date: Sun, 24 Jun 2018 19:32:53 -0700 Subject: [PATCH] Commwatches aren't rings. Please donut deloot. --- code/modules/clothing/clothing.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm index 27c7ecbd115..33c17b51d2d 100644 --- a/code/modules/clothing/clothing.dm +++ b/code/modules/clothing/clothing.dm @@ -253,7 +253,8 @@ var/mob/living/carbon/human/H = user if(slot && slot == slot_gloves) - if(H.gloves) + var/obj/item/clothing/gloves/G = H.gloves + if(istype(G)) ring = H.gloves if(ring.glove_level >= src.glove_level) to_chat(user, "You are unable to wear \the [src] as \the [H.gloves] are in the way.")