SPIGOT-5317: Create accessors for player absorption hearts

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot 2019-09-13 20:04:37 +10:00
parent e55a7d98fc
commit 33f110a246

View File

@ -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.
*