From 448d926d5a5b2965d2d4e84ae2ca9676d8d2c0d5 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Thu, 18 Sep 2025 14:44:21 -0400 Subject: [PATCH] v3.2.5: fixed metamorphed recall inscription text not being translated --- .../shatteredpixeldungeon/actors/hero/Talent.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 1ee8ad987..37607d03e 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 @@ -773,7 +773,7 @@ public enum Talent { // 10/15% if (Random.Int(20) < 1 + hero.pointsInTalent(RECALL_INSCRIPTION)){ Reflection.newInstance(cls).collect(); - GLog.p("refunded!"); + GLog.p(Messages.get(Talent.class, RECALL_INSCRIPTION.name() + ".refunded")); } } } @@ -792,7 +792,7 @@ public enum Talent { // 10/15% if (Random.Int(20) < 1 + hero.pointsInTalent(RECALL_INSCRIPTION)){ Reflection.newInstance(cls).collect(); - GLog.p("refunded!"); + GLog.p(Messages.get(Talent.class, RECALL_INSCRIPTION.name() + ".refunded")); } } }