diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndBlacksmith.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndBlacksmith.java index 30c02c6b8..e74c31393 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndBlacksmith.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndBlacksmith.java @@ -375,7 +375,7 @@ public class WndBlacksmith extends Window { public void onSelect(Item item) { if (item != null) { item.upgrade(); - int upgradeCost = Blacksmith.Quest.upgrades == 0 ? 1000 : 1500; + int upgradeCost = 1000 * (int)Math.pow(2, Blacksmith.Quest.upgrades); Blacksmith.Quest.favor -= upgradeCost; Blacksmith.Quest.upgrades++;