v1.2.0: fixed arcane catalysts not being convertable into energy
This commit is contained in:
parent
9ac130cff5
commit
f9c95d0402
|
@ -82,7 +82,12 @@ public class ArcaneCatalyst extends Spell {
|
||||||
public int value() {
|
public int value() {
|
||||||
return 40 * quantity;
|
return 40 * quantity;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int energyVal() {
|
||||||
|
return 8 * quantity;
|
||||||
|
}
|
||||||
|
|
||||||
public static class Recipe extends com.shatteredpixel.shatteredpixeldungeon.items.Recipe {
|
public static class Recipe extends com.shatteredpixel.shatteredpixeldungeon.items.Recipe {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue
Block a user