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 {