From 79f1009bb13109cc7e65e456a95da7e490d6374d Mon Sep 17 00:00:00 2001 From: NightDawnFox <116907157+NightDawnFox@users.noreply.github.com> Date: Sat, 28 Sep 2024 22:24:09 +0500 Subject: [PATCH] balance: fake insulated gloves now can be recognized only in close range (#5954) he-he-he --- code/modules/clothing/gloves/color.dm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/code/modules/clothing/gloves/color.dm b/code/modules/clothing/gloves/color.dm index f0a26a4f5f4..a611655bafb 100644 --- a/code/modules/clothing/gloves/color.dm +++ b/code/modules/clothing/gloves/color.dm @@ -56,9 +56,14 @@ unlimited_power = TRUE /obj/item/clothing/gloves/color/yellow/fake - desc = "These gloves will protect the wearer from electric shock. They don't feel like rubber..." siemens_coefficient = 1 +/obj/item/clothing/gloves/color/yellow/fake/examine(mob/user) + . = ..() + if(Adjacent(user)) + . += span_notice("They don't feel like rubber...") + + /obj/item/clothing/gloves/color/fyellow //Cheap Chinese Crap desc = "These gloves are cheap copies of the coveted gloves, no way this can end badly." name = "budget insulated gloves"