mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-04 07:17:46 +01:00
Fix wrong variable being checked. Fixes #233
This commit is contained in:
parent
088c935ff4
commit
7735f35e04
@ -12,7 +12,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void setFlying(boolean value) {
|
public void setFlying(boolean value) {
|
||||||
+ boolean needsUpdate = getHandle().abilities.canFly != value; // Paper - Only refresh abilities if needed
|
+ boolean needsUpdate = getHandle().abilities.isFlying != value; // Paper - Only refresh abilities if needed
|
||||||
if (!getAllowFlight() && value) {
|
if (!getAllowFlight() && value) {
|
||||||
throw new IllegalArgumentException("Cannot make player fly if getAllowFlight() is false");
|
throw new IllegalArgumentException("Cannot make player fly if getAllowFlight() is false");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user