From 0565cc41c1fb857e0cd0863d8157ac4ea6a2e221 Mon Sep 17 00:00:00 2001 From: Neerti Date: Mon, 4 Mar 2019 08:15:18 -0500 Subject: [PATCH] Merge pull request #5986 from Anewbe/rings Rings no longer cover ones hands --- code/modules/clothing/clothing.dm | 1 + code/modules/clothing/rings/rings.dm | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm index 84a331a77b4..f6a38c2eee6 100644 --- a/code/modules/clothing/clothing.dm +++ b/code/modules/clothing/clothing.dm @@ -306,6 +306,7 @@ glove_level = 1 fingerprint_chance = 100 punch_force = 2 + body_parts_covered = 0 /////////////////////////////////////////////////////////////////////// //Head diff --git a/code/modules/clothing/rings/rings.dm b/code/modules/clothing/rings/rings.dm index 699be51454c..2838de0d2f7 100644 --- a/code/modules/clothing/rings/rings.dm +++ b/code/modules/clothing/rings/rings.dm @@ -69,7 +69,7 @@ name = "signet ring" desc = "A signet ring, for when you're too sophisticated to sign letters." icon_state = "seal-signet" - var/nameset = 0 + var/nameset = FALSE /obj/item/clothing/gloves/ring/seal/signet/attack_self(mob/user) if(nameset) @@ -78,7 +78,7 @@ to_chat(user, "You claim the [src] as your own!") change_name(user) - nameset = 1 + nameset = TRUE /obj/item/clothing/gloves/ring/seal/signet/proc/change_name(var/signet_name = "Unknown") name = "[signet_name]'s signet ring"