From 6299c546abcfb89cf9daffd2e7b4c22715cc2c10 Mon Sep 17 00:00:00 2001 From: paprka Date: Wed, 4 Feb 2015 18:05:45 -0800 Subject: [PATCH] fixes a runtime related to stacks --- code/game/objects/items/stacks/stack.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/stacks/stack.dm b/code/game/objects/items/stacks/stack.dm index d1c629f2856..a3e8959f9a8 100644 --- a/code/game/objects/items/stacks/stack.dm +++ b/code/game/objects/items/stacks/stack.dm @@ -201,7 +201,7 @@ usr << "You add new [item.singular_name] to the stack. It now contains [item.amount] [item.singular_name]\s." if(oldsrc.amount <= 0) break - update_icon() + oldsrc.update_icon() /obj/item/stack/attack_hand(mob/user as mob) if (user.get_inactive_hand() == src)