Fixes blocked alien hand HUD (#22326)

* Fix for blocked hud on aliens

* Update code/_onclick/hud/screen_objects.dm

Co-authored-by: SteelSlayer <42044220+SteelSlayer@users.noreply.github.com>

* parenthesis adjustment

---------

Co-authored-by: SteelSlayer <42044220+SteelSlayer@users.noreply.github.com>
This commit is contained in:
Burzah
2023-09-14 20:08:04 -05:00
committed by GitHub
co-authored by SteelSlayer
parent a586e16d81
commit bc6e861ad6
+1 -1
View File
@@ -453,7 +453,7 @@
. += handcuff_overlay
var/obj/item/organ/external/hand = C.get_organ("[slot_id == slot_l_hand ? "l" : "r"]_hand")
if(!hand || !hand.is_usable())
if(!isalien(C) && (!hand || !hand.is_usable()))
. += blocked_overlay
if(slot_id == slot_l_hand && hud.mymob.hand)