From f9c95d04024d866fa6da782cefdac0b238d0fcff Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sun, 20 Mar 2022 15:15:42 -0400 Subject: [PATCH] v1.2.0: fixed arcane catalysts not being convertable into energy --- .../shatteredpixeldungeon/items/spells/ArcaneCatalyst.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/ArcaneCatalyst.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/ArcaneCatalyst.java index ad126f450..1b3c32234 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/ArcaneCatalyst.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/ArcaneCatalyst.java @@ -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