v1.2.0: fixed arcane catalysts not being convertable into energy

This commit is contained in:
Evan Debenham 2022-03-20 15:15:42 -04:00
parent 9ac130cff5
commit f9c95d0402

View File

@ -82,7 +82,12 @@ public class ArcaneCatalyst extends Spell {
public int value() {
return 40 * quantity;
}
@Override
public int energyVal() {
return 8 * quantity;
}
public static class Recipe extends com.shatteredpixel.shatteredpixeldungeon.items.Recipe {
@Override