#375: Add accessors to Wither's invulnerability ticks

By: Matthew <stteg@hotmail.com>
This commit is contained in:
CraftBukkit/Spigot
2023-04-21 18:59:04 +10:00
parent 695e12db3d
commit 747897f79b

View File

@@ -61,4 +61,16 @@ public class CraftWither extends CraftMonster implements Wither {
Entity target = getHandle().getLevel().getEntity(entityId); Entity target = getHandle().getLevel().getEntity(entityId);
return (target != null) ? (LivingEntity) target.getBukkitEntity() : null; 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);
}
} }