change: reset revived player health relative to their max health

This commit is contained in:
Octol1ttle 2024-03-05 23:37:29 +05:00
parent 6194487c49
commit d5109548c8
Signed by: Octol1ttle
GPG key ID: B77C34313AEE1FFF

View file

@ -98,7 +98,7 @@ public class KnockdownsEvents {
player.setInvulnerable(false);
player.setGlowing(false);
player.setHealth(6.0f);
player.setHealth(player.getMaxHealth() * 0.3f);
}
return;
}