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