mirror of
https://github.com/PaperMC/Paper.git
synced 2025-02-02 21:51:28 +01:00
[Bleeding] Implement setCharged and getCharged for WitherSkull. Addresses BUKKIT-3060
This commit is contained in:
parent
8a5ad89a68
commit
1fa4b69bd8
@ -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 New Issue
Block a user