v0.3.2: fixed some bugs with tengu boss fight

This commit is contained in:
Evan Debenham
2015-11-02 13:02:29 -05:00
committed by Evan Debenham
parent b04cadcbf4
commit c9d196622b
2 changed files with 5 additions and 4 deletions
@@ -86,7 +86,8 @@ public class Tengu extends Mob {
@Override
public void damage(int dmg, Object src) {
if (dmg > HP) {
//phase 2 of the fight is over
if (dmg >= HP) {
((PrisonBossLevel)Dungeon.level).progress();
return;
}