Fixed incorrect assigning to isFlying when toggling setAllowedFlight(false)

Dieser Commit ist enthalten in:
Nathan Adams 2012-03-23 14:41:53 +00:00
Ursprung 6ef9500410
Commit 942c1c6a3e

Datei anzeigen

@ -825,7 +825,7 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
public void setAllowFlight(boolean value) { public void setAllowFlight(boolean value) {
if (isFlying() && !value) { if (isFlying() && !value) {
getHandle().abilities.canFly = false; getHandle().abilities.isFlying = false;
} }
getHandle().abilities.canFly = value; getHandle().abilities.canFly = value;