mirror of
https://github.com/Melledy/LunarCore.git
synced 2025-12-14 06:14:45 +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