Remove debug message left in WaterSpoutWave

This commit is contained in:
Christopher Martin 2017-01-16 13:33:10 -08:00 committed by GitHub
parent 9fa1810e71
commit 1c282ca550

View file

@ -292,7 +292,6 @@ public class WaterSpoutWave extends WaterAbility {
for (Block block : FROZEN_BLOCKS.keySet()) {
TempBlock tBlock = FROZEN_BLOCKS.get(block);
if (tBlock.getBlock().getWorld().equals(player.getWorld()) && tBlock.getLocation().distance(player.getLocation()) >= thawRadius) {
Bukkit.broadcastMessage("revert");
tBlock.revertBlock();
FROZEN_BLOCKS.remove(block);
}