update inventory when getting conc and gold at start

This commit is contained in:
2025-01-04 12:31:22 -06:00
parent 3539372437
commit 78118aa08c
+1
View File
@@ -4884,6 +4884,7 @@ public class PlayerCharacter extends AbstractCharacter {
if(this.charItemManager != null && this.charItemManager.getGoldInventory() != null && this.charItemManager.getGoldInventory().getNumOfItems() < 1000) {
this.getCharItemManager().addGoldToInventory(1000, false);
this.getCharItemManager().addItemToInventory(new MobLoot(this, ItemBase.getItemBase(980066), 1, false).promoteToItem(this));
this.getCharItemManager().updateInventory();
}
}