mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-27 06:54:18 +01:00
Missing hand equip bugfix (#12019)
This commit is contained in:
@@ -442,6 +442,16 @@ var/list/global/slot_flags_enumeration = list(
|
||||
return 0
|
||||
if(slot_wear_id)
|
||||
return 1
|
||||
if(slot_l_hand)
|
||||
var/obj/item/organ/external/O
|
||||
O = H.organs_by_name[BP_L_HAND]
|
||||
if(!O || !O.is_usable() || O.is_malfunctioning())
|
||||
return FALSE
|
||||
if(slot_r_hand)
|
||||
var/obj/item/organ/external/O
|
||||
O = H.organs_by_name[BP_R_HAND]
|
||||
if(!O || !O.is_usable() || O.is_malfunctioning())
|
||||
return FALSE
|
||||
if(slot_l_store, slot_r_store)
|
||||
if(!H.w_uniform && (slot_w_uniform in mob_equip))
|
||||
if(!disable_warning)
|
||||
|
||||
Reference in New Issue
Block a user