mirror of
https://github.com/TotalFreedomMC/TF-ProjectKorra.git
synced 2024-12-22 16:05:01 +00:00
Fix NPEs
This commit is contained in:
parent
cf9b781de1
commit
996e470089
2 changed files with 12 additions and 7 deletions
|
@ -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;
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue