#375: Add accessors to Wither's invulnerability ticks
This commit is contained in:
parent
bfd8b1ac82
commit
63cad7f840
@ -61,4 +61,16 @@ public class CraftWither extends CraftMonster implements Wither {
|
||||
Entity target = getHandle().getLevel().getEntity(entityId);
|
||||
return (target != null) ? (LivingEntity) target.getBukkitEntity() : null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getInvulnerabilityTicks() {
|
||||
return getHandle().getInvulnerableTicks();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setInvulnerabilityTicks(int ticks) {
|
||||
Preconditions.checkArgument(ticks >= 0, "ticks must be >=0");
|
||||
|
||||
getHandle().setInvulnerableTicks(ticks);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user