mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-01 15:25:42 +08:00
Fix polarity of Bat.isAwake() and Bat.setAwake(boolean). Fixes BUKKIT-5624
This commit is contained in:
parent
a1f3d35808
commit
4ab4fa5bb1
@ -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 New Issue
Block a user