v2.3.0: spirit hawk now interrupts the hero when it expires

This commit is contained in:
Evan Debenham
2023-12-11 13:10:09 -05:00
parent fef3ea87d5
commit 076e13ee08

View File

@@ -209,6 +209,7 @@ public class SpiritHawk extends ArmorAbility {
protected boolean act() {
if (timeRemaining <= 0){
die(null);
Dungeon.hero.interrupt();
return true;
}
viewDistance = 6+Dungeon.hero.pointsInTalent(Talent.EAGLE_EYE);