diff --git a/code/game/objects/items/weapons/storage/bags.dm b/code/game/objects/items/weapons/storage/bags.dm index 5b20553430..2c4fa65abf 100644 --- a/code/game/objects/items/weapons/storage/bags.dm +++ b/code/game/objects/items/weapons/storage/bags.dm @@ -275,6 +275,7 @@ var/stacksize = min(S.amount,N.max_amount) N.amount = stacksize S.amount -= stacksize + N.update_icon() if(!S.amount) qdel(S) // todo: there's probably something missing here orient2hud(usr)