diff --git a/Projects/Server/Items/Container.cs b/Projects/Server/Items/Container.cs index 9469fa11f..3f7665ada 100644 --- a/Projects/Server/Items/Container.cs +++ b/Projects/Server/Items/Container.cs @@ -1262,7 +1262,8 @@ public partial class Container : Item { if (type.IsInstanceOfType(item)) { - Items.Add(item); + items.Enqueue(item); + total += item.Amount; if (total >= amount) {