From 29f93b0800f83cc01f41e3a6c05d5dec580372e0 Mon Sep 17 00:00:00 2001 From: Leshana Date: Thu, 8 Mar 2018 00:33:43 -0500 Subject: [PATCH] Fix un-eqipping gear with a single click. - Restored this functionality to the way it was, with the exception of uniforms. That drops everything when you remove it, so is still protected. --- code/modules/clothing/clothing_accessories.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/clothing/clothing_accessories.dm b/code/modules/clothing/clothing_accessories.dm index 57c292f1e38..4759f03658b 100644 --- a/code/modules/clothing/clothing_accessories.dm +++ b/code/modules/clothing/clothing_accessories.dm @@ -29,7 +29,7 @@ return if (ishuman(user) && src.loc == user) var/mob/living/carbon/human/H = user - if(src != H.l_store && src != H.r_store && src != H.s_store) + if(src == H.w_uniform) // VOREStation Edit - Un-equip on single click, but not on uniform. return return ..()