mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-03 06:40:19 +08:00
Implement getting / setting of Entity invulnerability
This commit is contained in:
parent
6067e54dd2
commit
ea49b2eee9
@ -553,6 +553,16 @@ public abstract class CraftEntity implements org.bukkit.entity.Entity {
|
||||
return getHandle().glowing;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setInvulnerable(boolean flag) {
|
||||
getHandle().h(flag); // PAIL: rename setInvulnerable
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isInvulnerable() {
|
||||
return getHandle().isInvulnerable(DamageSource.GENERIC);
|
||||
}
|
||||
|
||||
private static PermissibleBase getPermissibleBase() {
|
||||
if (perm == null) {
|
||||
perm = new PermissibleBase(new ServerOperator() {
|
||||
|
Loading…
Reference in New Issue
Block a user