v1.3.0: fixed various badges not triggered with ankh death

This commit is contained in:
Evan Debenham
2022-06-30 19:03:30 -04:00
parent ef487e549c
commit 2e595ed392

View File

@@ -1694,6 +1694,10 @@ public class Hero extends Char {
}
});
if (cause instanceof Hero.Doom) {
((Hero.Doom)cause).onDeath();
}
}
return;
}
@@ -1766,10 +1770,6 @@ public class Hero extends Char {
}
});
if (cause instanceof Hero.Doom) {
((Hero.Doom)cause).onDeath();
}
Dungeon.deleteGame( GamesInProgress.curSlot, true );
}