From 1627296a45ec53a91ea5e8108a765b2f385558c1 Mon Sep 17 00:00:00 2001 From: HaultyAnonie Date: Fri, 3 May 2024 00:12:49 +0100 Subject: [PATCH] oops2 USER NOT H --- code/game/objects/items/clothing/clothing.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/clothing/clothing.dm b/code/game/objects/items/clothing/clothing.dm index fa7e2f0494..17039ae8c4 100644 --- a/code/game/objects/items/clothing/clothing.dm +++ b/code/game/objects/items/clothing/clothing.dm @@ -394,9 +394,9 @@ BLIND // can't see anything /obj/item/clothing/shoes/attack_hand(var/mob/living/M) if (hasorgans(M)) // if ishuman var/mob/living/human/user = M - var/obj/item/organ/external/temp = H.organs_by_name["r_hand"] + var/obj/item/organ/external/temp = user.organs_by_name["r_hand"] if (user.hand) - temp = H.organs_by_name["l_hand"] + temp = user.organs_by_name["l_hand"] if (temp && !temp.is_usable()) to_chat(user, SPAN_NOTICE("You try to move your [temp.name], but cannot!")) return