v0.3.2c: fixed an issue with tengu dieing while sleeping

This commit is contained in:
Evan Debenham 2015-11-23 18:15:47 -05:00
parent 71c5b24842
commit 39781aa3fa

View File

@ -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;
}