Skip to content

Commit

Permalink
oops2
Browse files Browse the repository at this point in the history
USER NOT H
  • Loading branch information
HaultyAnonie committed May 2, 2024
1 parent f1006fa commit 1627296
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/game/objects/items/clothing/clothing.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1627296

Please sign in to comment.