This commit is contained in:
Sauilitired
2016-06-16 02:08:01 +02:00
parent ae5e15e434
commit 5b103d49c0
6 changed files with 40 additions and 17 deletions
Bukkit/src/main/java/com/plotsquared/bukkit/object
Core/src/main/java/com
intellectualcrafters
plotsquared
Sponge/src/main/java/com/plotsquared/sponge/object

@ -167,7 +167,13 @@ public class SpongePlayer extends PlotPlayer {
this.player.offer(Keys.IS_FLYING, fly);
this.player.offer(Keys.CAN_FLY, fly);
}
@Override
public boolean getFlight() {
Optional<Boolean> flying = player.get(Keys.CAN_FLY);
return flying.isPresent() && flying.get();
}
@Override
public void playMusic(Location location, int id) {
switch (id) {