diff --git a/CHANGELOG b/CHANGELOG index c4e0bc6fd..d56e207de 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -84,3 +84,4 @@ - Static clue drop ids replaced with their level appropriate proxy values - Fix a bug where clue scrolls were rerolled to easy for most NPCs - Allow renewing summoning familiars, and make bobs drop items on dismissal even if their owners are ironmen. +- Battlestaves cost 7k from zaff. diff --git a/Server/src/main/java/core/game/interaction/npc/ZaffPlugin.kt b/Server/src/main/java/core/game/interaction/npc/ZaffPlugin.kt index c398b6ce7..6f61517af 100644 --- a/Server/src/main/java/core/game/interaction/npc/ZaffPlugin.kt +++ b/Server/src/main/java/core/game/interaction/npc/ZaffPlugin.kt @@ -388,7 +388,7 @@ class ZaffPlugin : OptionHandler() { interpreter.sendDialogues( 546, FacialExpression.HALF_GUILTY, - "Battlestaves cost 8,000 gold pieces each. I have ${maxStaffs - ammount} left.", + "Battlestaves cost 7,000 gold pieces each. I have ${maxStaffs - ammount} left.", "How many would you like to buy?" ) stage = 1 @@ -397,7 +397,7 @@ class ZaffPlugin : OptionHandler() { ammount = getStoreFile().getInt(player.username.toLowerCase()) var amt = value as Int if(amt > maxStaffs - ammount) amt = maxStaffs - ammount - val coinage = amt * 8000 + val coinage = amt * 7000 if(!inInventory(player, Items.COINS_995, coinage)){ sendDialogue(player, "You can't afford that many.") return@sendInputDialogue