From 68d1f047224c35297e4a8ade09a819589cb240bb Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Tue, 12 Apr 2022 16:21:36 -0400 Subject: [PATCH] v1.2.3: fixed error with v1.2.2 ratroic energy fix --- .../shatteredpixeldungeon/actors/hero/Talent.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Talent.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Talent.java index 277d69b1a..9200ab1af 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Talent.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Talent.java @@ -219,7 +219,7 @@ public enum Talent { } public String title(){ - if (Ratmogrify.useRatroicEnergy){ + if (this == HEROIC_ENERGY && Ratmogrify.useRatroicEnergy){ return Messages.get(this, name() + ".rat_title"); } return Messages.get(this, name() + ".title");