This commit is contained in:
Steffion 2013-10-05 20:16:59 +02:00
parent 0ef6500c04
commit ffb2da6549

View File

@ -98,7 +98,7 @@ public class ArenaHandler {
player.getHealth(), player.getHealth(),
player.getFoodLevel(), player.getFoodLevel(),
player.getActivePotionEffects(), player.getActivePotionEffects(),
player.isFlying()); player.getAllowFlight());
W.pData.put(player, pad); W.pData.put(player, pad);
@ -119,6 +119,7 @@ public class ArenaHandler {
player.getInventory().setBoots( player.getInventory().setBoots(
new ItemStack(Material.AIR)); new ItemStack(Material.AIR));
player.setFlying(false); player.setFlying(false);
player.setAllowFlight(false);
if ((Boolean) W.config if ((Boolean) W.config
.get(ConfigC.shop_blockChooserEnabled) == true) { .get(ConfigC.shop_blockChooserEnabled) == true) {
@ -276,7 +277,10 @@ public class ArenaHandler {
player.addPotionEffects(pad.pPotionEffects); player.addPotionEffects(pad.pPotionEffects);
player.teleport(pad.pLocation); player.teleport(pad.pLocation);
player.setGameMode(pad.pGameMode); player.setGameMode(pad.pGameMode);
player.setFlying(pad.pFlying); player.setAllowFlight(pad.pFlying);
if (player.getAllowFlight()) {
player.setFlying(true);
}
W.pData.remove(player); W.pData.remove(player);