Fix challenges registering an avatar as dead when calculating stars

This commit is contained in:
Melledy
2023-10-20 03:53:42 -07:00
parent ca5fef3f5b
commit 0c2259f9bd

View File

@@ -147,7 +147,7 @@ public class GameAvatar implements GameEntity {
}
public boolean isAlive() {
return this.getCurrentHp() <= 0;
return this.getCurrentHp() > 0;
}
public int getRank() {