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")); } } }