resource stacking bug

This commit is contained in:
2024-03-09 19:19:58 -06:00
parent dd548acfe1
commit d058e7506a
+4 -1
View File
@@ -1280,8 +1280,11 @@ public class CharacterItemManager {
if (ib != null)
this.inventoryWeight += ib.getWeight();
} else{
this.inventory.removeAll(purge);
i.setNumOfItems(count);
for(Item item : purge){
this.delete(item);
}
this.inventory.removeAll(purge);
this.inventory.add(i);
}
this.updateInventory();