Fix bug where teleport location was never reset if warmup was set to 0

for Chimera Wing.

Fixes #1323
This commit is contained in:
GJ
2013-07-30 15:20:18 -04:00
parent a345737b8b
commit d1bf48ad79
2 changed files with 1 additions and 2 deletions

View File

@ -29,8 +29,6 @@ public class ChimaeraWingWarmup extends BukkitRunnable {
Player player = mcMMOPlayer.getPlayer();
Location previousLocation = mcMMOPlayer.getTeleportCommenceLocation();
mcMMOPlayer.setTeleportCommenceLocation(null);
if (player.getLocation().distanceSquared(previousLocation) > 1.0 || !player.getInventory().containsAtLeast(ChimaeraWing.getChimaeraWing(0), 1)) {
player.sendMessage(LocaleLoader.getString("Teleport.Cancelled"));
return;