diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Hero.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Hero.java index 82a1adfd8..b746c1afa 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Hero.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Hero.java @@ -1455,7 +1455,7 @@ public class Hero extends Char { GLog.p( Messages.get(this, "new_level") ); sprite.showStatus( CharSprite.POSITIVE, Messages.get(Hero.class, "level_up") ); Sample.INSTANCE.play( Assets.Sounds.LEVELUP ); - if (lvl <= 6){ + if (lvl < Talent.tierLevelThresholds[Talent.MAX_TALENT_TIERS+1]){ GLog.newLine(); GLog.p( Messages.get(this, "new_talent") ); StatusPane.talentBlink = 10f;