v3.2.5: fixed metamorphed recall inscription text not being translated

This commit is contained in:
Evan Debenham
2025-09-18 14:44:21 -04:00
parent 07c4d2f4ca
commit 448d926d5a

View File

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