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 8c01c25da..4d2f3e536 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 @@ -320,7 +320,8 @@ public class Hero extends Char { } public int talentPointsAvailable(int tier){ - if (lvl < Talent.tierLevelThresholds[tier]){ + if (lvl < Talent.tierLevelThresholds[tier] + || (tier == 3 && subClass == HeroSubClass.NONE)){ return 0; } else if (lvl >= Talent.tierLevelThresholds[tier+1]){ return Talent.tierLevelThresholds[tier+1] - Talent.tierLevelThresholds[tier] - talentPointsSpent(tier);