Implemented new player flight methods. This implements BUKKIT-1281. This also fixes BUKKIT-1146.

This commit is contained in:
Nathan Adams 2012-03-22 22:04:13 +00:00
parent ca8b9a0bb4
commit 8fb141bfa0

View File

@ -577,14 +577,6 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
getHandle().getFoodData().foodLevel = value;
}
public boolean getAllowFlight() {
return getHandle().itemInWorldManager.player.abilities.canFly;
}
public void setAllowFlight(boolean flight) {
getHandle().itemInWorldManager.player.abilities.canFly = flight;
}
public Location getBedSpawnLocation() {
World world = getServer().getWorld(getHandle().spawnWorld);
if ((world != null) && (getHandle().getBed() != null)) {
@ -813,4 +805,30 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
public void disconnect(String reason) {
conversationTracker.abandonAllConversations();
}
public boolean isFlying() {
return getHandle().abilities.isFlying;
}
public void setFlying(boolean value) {
if (!getAllowFlight() && value) {
throw new IllegalArgumentException("Cannot make player fly if getAllowFlight() is false");
}
getHandle().abilities.isFlying = value;
getHandle().updateAbilities();
}
public boolean getAllowFlight() {
return getHandle().abilities.canFly;
}
public void setAllowFlight(boolean value) {
if (isFlying() && !value) {
getHandle().abilities.canFly = false;
}
getHandle().abilities.canFly = value;
getHandle().updateAbilities();
}
}