mirror of
https://github.com/Melledy/LunarCore.git
synced 2025-12-13 22:04:36 +01:00
Fix challenges registering an avatar as dead when calculating stars
This commit is contained in:
@@ -147,7 +147,7 @@ public class GameAvatar implements GameEntity {
|
||||
}
|
||||
|
||||
public boolean isAlive() {
|
||||
return this.getCurrentHp() <= 0;
|
||||
return this.getCurrentHp() > 0;
|
||||
}
|
||||
|
||||
public int getRank() {
|
||||
|
||||
Reference in New Issue
Block a user