This commit is contained in:
jedk1 2016-05-03 23:03:50 +01:00
parent cf9b781de1
commit 996e470089
2 changed files with 12 additions and 7 deletions

View file

@ -240,6 +240,9 @@ public class IceSpikeBlast extends IceAbility {
destination = target.getEyeLocation();
}
if (sourceBlock == null) {
return;
}
location = sourceBlock.getLocation();
if (destination.distanceSquared(location) < 1) {
return;

View file

@ -341,13 +341,15 @@ public class SurgeWall extends WaterAbility {
}
private static void finalRemoveWater(Block block) {
if (AFFECTED_BLOCKS.containsKey(block)) {
TempBlock.revertBlock(block, Material.AIR);
AFFECTED_BLOCKS.remove(block);
}
if (WALL_BLOCKS.containsKey(block)) {
TempBlock.revertBlock(block, Material.AIR);
WALL_BLOCKS.remove(block);
if (block != null) {
if (AFFECTED_BLOCKS.containsKey(block)) {
TempBlock.revertBlock(block, Material.AIR);
AFFECTED_BLOCKS.remove(block);
}
if (WALL_BLOCKS.containsKey(block)) {
TempBlock.revertBlock(block, Material.AIR);
WALL_BLOCKS.remove(block);
}
}
}