mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-25 21:19:00 +01:00
No longer drop items in other hand when one hand is lost (#22462)
Co-authored-by: Adrer <adrermail@gmail.com>
This commit is contained in:
@@ -180,9 +180,9 @@
|
||||
update_hand_missing()
|
||||
if(owner.gloves)
|
||||
owner.unEquip(owner.gloves)
|
||||
if(owner.l_hand)
|
||||
if(owner.l_hand && (body_part == HAND_LEFT))
|
||||
owner.unEquip(owner.l_hand, TRUE)
|
||||
if(owner.r_hand)
|
||||
if(owner.r_hand && (body_part == HAND_RIGHT))
|
||||
owner.unEquip(owner.r_hand, TRUE)
|
||||
|
||||
. = ..()
|
||||
|
||||
Reference in New Issue
Block a user