mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-02 04:56:50 +01:00
[Bleeding] Implement setCharged and getCharged for WitherSkull. Addresses BUKKIT-3060
This commit is contained in:
parent
8a5ad89a68
commit
1fa4b69bd8
1 changed files with 10 additions and 0 deletions
|
@ -10,6 +10,16 @@ public class CraftWitherSkull extends CraftFireball implements WitherSkull {
|
|||
super(server, entity);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setCharged(boolean charged) {
|
||||
getHandle().a(charged);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isCharged() {
|
||||
return getHandle().f();
|
||||
}
|
||||
|
||||
@Override
|
||||
public EntityWitherSkull getHandle() {
|
||||
return (EntityWitherSkull) entity;
|
||||
|
|
Loading…
Reference in a new issue