Implement getting / setting of Entity invulnerability.

By: Sansko1337 <sansko1337@users.noreply.github.com>
This commit is contained in:
Bukkit/Spigot 2016-03-25 00:33:15 +01:00
parent c24b820089
commit 3aed26f6b2

View file

@ -356,4 +356,21 @@ public interface Entity extends Metadatable, CommandSender {
* @return whether the entity is glowing
*/
boolean isGlowing();
/**
* Sets whether the entity is invulnerable or not.
* <p>
* When an entity is invulnerable it can only be damaged by players in
* creative mode.
*
* @param flag if the entity is invulnerable
*/
public void setInvulnerable(boolean flag);
/**
* Gets whether the entity is invulnerable or not.
*
* @return whether the entity is
*/
public boolean isInvulnerable();
}