13
0
geforkt von Mirrors/Paper

SPIGOT-5317: Create accessors for player absorption hearts

By: md_5 <git@md-5.net>
Dieser Commit ist enthalten in:
Bukkit/Spigot 2019-09-13 20:04:37 +10:00
Ursprung e55a7d98fc
Commit 33f110a246

Datei anzeigen

@ -40,6 +40,22 @@ public interface Damageable extends Entity {
*/
void setHealth(double health);
/**
* Sets the entity's absorption amount.
*
* @return absorption amount from 0
*/
double getAbsorptionAmount();
/**
* Sets the entity's absorption amount.
*
* @param amount new absorption amount from 0
* @throws IllegalArgumentException thrown if health is {@literal < 0} or
* non-finite.
*/
void setAbsorptionAmount(double amount);
/**
* Gets the maximum health this entity has.
*