From 1e865eecbc3772940df613945cd1b2a6b26e88ff Mon Sep 17 00:00:00 2001 From: FatBoy-DOTC Date: Tue, 11 Feb 2025 07:57:55 -0600 Subject: [PATCH] increase starting gold to 1500 --- src/engine/net/client/msg/VendorDialogMsg.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/net/client/msg/VendorDialogMsg.java b/src/engine/net/client/msg/VendorDialogMsg.java index 02899b70..3fcb2b83 100644 --- a/src/engine/net/client/msg/VendorDialogMsg.java +++ b/src/engine/net/client/msg/VendorDialogMsg.java @@ -636,7 +636,7 @@ public class VendorDialogMsg extends ClientNetMsg { DispatchMessage.dispatchMsgToInterestArea(pc, arm, DispatchChannel.PRIMARY, MBServerStatics.CHARACTER_LOAD_RANGE, true, false); if(pc.getCharItemManager() != null && pc.getCharItemManager().getGoldInventory() != null && pc.getCharItemManager().getGoldInventory().getNumOfItems() < 1000) { - pc.getCharItemManager().addGoldToInventory(1000, false); + pc.getCharItemManager().addGoldToInventory(1500, false); pc.getCharItemManager().addItemToInventory(new MobLoot(pc, ItemBase.getItemBase(980066), 1, false).promoteToItem(pc)); pc.getCharItemManager().updateInventory(); }