mirror of
https://github.com/PaperMC/Paper.git
synced 2025-04-01 17:35:54 +02:00
SPIGOT-2705: Portal cooldown getter / setter.
This commit is contained in:
parent
c1b529eddc
commit
ae93d4fb49
@ -584,6 +584,16 @@ public abstract class CraftEntity implements org.bukkit.entity.Entity {
|
||||
getHandle().setNoGravity(!gravity);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getPortalCooldown() {
|
||||
return getHandle().portalCooldown;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setPortalCooldown(int cooldown) {
|
||||
getHandle().portalCooldown = cooldown;
|
||||
}
|
||||
|
||||
private static PermissibleBase getPermissibleBase() {
|
||||
if (perm == null) {
|
||||
perm = new PermissibleBase(new ServerOperator() {
|
||||
|
Loading…
Reference in New Issue
Block a user