diff --git a/code/game/objects/items/stacks/stack.dm b/code/game/objects/items/stacks/stack.dm index 966ac7c645b..c990e2cf57c 100644 --- a/code/game/objects/items/stacks/stack.dm +++ b/code/game/objects/items/stacks/stack.dm @@ -229,7 +229,7 @@ amount -= used if (amount <= 0) if(usr) - usr.remove_from_mob(src) + usr.remove_from_mob(src, null) qdel(src) //should be safe to qdel immediately since if someone is still using this stack it will persist for a little while longer update_icon() return 1