From 6e3afeac5f5af9bce827e4933bf398135dbd9d2a Mon Sep 17 00:00:00 2001 From: Segrain Date: Tue, 25 Nov 2014 10:29:39 +0300 Subject: [PATCH] Bugfix. --- code/modules/mob/living/carbon/human/inventory.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/inventory.dm b/code/modules/mob/living/carbon/human/inventory.dm index 4e22035052..f9bc6ee4ff 100644 --- a/code/modules/mob/living/carbon/human/inventory.dm +++ b/code/modules/mob/living/carbon/human/inventory.dm @@ -313,10 +313,10 @@ src << "\red You are trying to eqip this item to an unsupported inventory slot. How the heck did you manage that? Stop it..." return - if(W == src.l_hand) + if((W == src.l_hand) && (slot != slot_l_hand)) src.l_hand = null update_inv_l_hand() //So items actually disappear from hands. - else if(W == src.r_hand) + else if((W == src.r_hand) && (slot != slot_r_hand)) src.r_hand = null update_inv_r_hand()