From 00ecbcdcfd9c7cacee93740dadedf76244c4c13c Mon Sep 17 00:00:00 2001 From: DJSnapshot Date: Fri, 29 Nov 2013 17:44:31 -0800 Subject: [PATCH] fix for https://github.com/Baystation12/Baystation12/issues/3887 Thanks to AquaDraco for the fix --- code/_onclick/hud/screen_objects.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/_onclick/hud/screen_objects.dm b/code/_onclick/hud/screen_objects.dm index a0dcfb9ae9c..4ca8f9f5d75 100644 --- a/code/_onclick/hud/screen_objects.dm +++ b/code/_onclick/hud/screen_objects.dm @@ -36,6 +36,9 @@ if(istype(master, /obj/item/weapon/storage)) var/obj/item/weapon/storage/S = master S.close(usr) + else if(istype(master,/obj/item/clothing/suit/storage)) + var/obj/item/clothing/suit/storage/S = master + S.close(usr) return 1