mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-02 13:07:06 +01:00
Implemented Creeper.is/setPowered
This commit is contained in:
parent
7c455380a9
commit
1a68a2aafe
1 changed files with 12 additions and 0 deletions
|
@ -15,4 +15,16 @@ public class CraftCreeper extends CraftMonster implements Creeper {
|
|||
return "CraftCreeper";
|
||||
}
|
||||
|
||||
public boolean isPowered() {
|
||||
return getHandle().W().a(17) == 1;
|
||||
}
|
||||
|
||||
public void setPowered(boolean powered) {
|
||||
if (powered) {
|
||||
getHandle().W().a(17, 1);
|
||||
} else {
|
||||
getHandle().W().a(17, 0);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue