mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-29 19:52:55 +01:00
Fix polarity of Bat.isAwake() and Bat.setAwake(boolean). Fixes BUKKIT-5624
This commit is contained in:
parent
a1f3d35808
commit
4ab4fa5bb1
1 changed files with 2 additions and 2 deletions
|
@ -26,11 +26,11 @@ public class CraftBat extends CraftAmbient implements Bat {
|
|||
|
||||
@Override
|
||||
public boolean isAwake() {
|
||||
return getHandle().isStartled();
|
||||
return !getHandle().isStartled();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setAwake(boolean state) {
|
||||
getHandle().setStartled(state);
|
||||
getHandle().setStartled(!state);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue