From 2d0658f2c95693f71351f473ada0b414a1f7579e Mon Sep 17 00:00:00 2001 From: chopchop1614 Date: Tue, 2 Aug 2016 21:58:22 +0100 Subject: [PATCH] fixes the C4 bug --- code/modules/clothing/suits/storage.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/clothing/suits/storage.dm b/code/modules/clothing/suits/storage.dm index faf5f389e9d..82a468d2a63 100644 --- a/code/modules/clothing/suits/storage.dm +++ b/code/modules/clothing/suits/storage.dm @@ -23,7 +23,7 @@ /obj/item/clothing/suit/storage/attackby(obj/item/W as obj, mob/user as mob, params) ..() - pockets.attackby(W, user, params) + return pockets.attackby(W, user, params) /obj/item/clothing/suit/storage/emp_act(severity) pockets.emp_act(severity)