v0.7.3: corrected price of curse infusion as the quantity was reduced

This commit is contained in:
Evan Debenham 2019-05-04 18:41:56 -04:00
parent 21f52e1928
commit 2c2818939e

View File

@ -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 {