diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Tengu.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Tengu.java index 160b0bee3..8abef8bab 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Tengu.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Tengu.java @@ -92,6 +92,9 @@ public class Tengu extends Mob { //phase 2 of the fight is over if (dmg >= HP) { + if (state == SLEEPING) { + state = WANDERING; + } ((PrisonBossLevel)Dungeon.level).progress(); return; }