From 2c2818939ef73feabee9710e70dd0fefc21f376a Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sat, 4 May 2019 18:41:56 -0400 Subject: [PATCH] v0.7.3: corrected price of curse infusion as the quantity was reduced --- .../shatteredpixeldungeon/items/spells/CurseInfusion.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/CurseInfusion.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/CurseInfusion.java index 94d7eb3b6..ec1e3b967 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/CurseInfusion.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/CurseInfusion.java @@ -80,7 +80,7 @@ public class CurseInfusion extends InventorySpell { @Override public int price() { //prices of ingredients, divided by output quantity - return Math.round(quantity * ((30 + 100) / 4f)); + return Math.round(quantity * ((30 + 100) / 3f)); } public static class Recipe extends com.shatteredpixel.shatteredpixeldungeon.items.Recipe.SimpleRecipe {