From 3d6791df812163f03230273358eebda50bf827ea Mon Sep 17 00:00:00 2001 From: Segrain Date: Fri, 11 Oct 2013 10:22:58 +0300 Subject: [PATCH] Fix for pockets. --- code/modules/clothing/clothing.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm index a02616b556..daf28f9296 100644 --- a/code/modules/clothing/clothing.dm +++ b/code/modules/clothing/clothing.dm @@ -310,9 +310,6 @@ BLIND // can't see anything if(usr.stat) return if(hastie) - usr.put_in_hands(hastie) - hastie = null - if (istype(hastie,/obj/item/clothing/tie/holster)) verbs -= /obj/item/clothing/under/proc/holster @@ -320,7 +317,10 @@ BLIND // can't see anything verbs -= /obj/item/clothing/under/proc/storage var/obj/item/clothing/tie/storage/W = hastie if (W.hold) - W.hold.loc = hastie + W.hold.close(usr) + + usr.put_in_hands(hastie) + hastie = null if(istype(loc, /mob/living/carbon/human)) var/mob/living/carbon/human/H = loc