mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-27 22:17:32 +01:00
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user