v0.7.3: corrected price of curse infusion as the quantity was reduced
This commit is contained in:
parent
21f52e1928
commit
2c2818939e
|
@ -80,7 +80,7 @@ public class CurseInfusion extends InventorySpell {
|
||||||
@Override
|
@Override
|
||||||
public int price() {
|
public int price() {
|
||||||
//prices of ingredients, divided by output quantity
|
//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 {
|
public static class Recipe extends com.shatteredpixel.shatteredpixeldungeon.items.Recipe.SimpleRecipe {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user