Try to fix FreezeMelt NPE

This commit is contained in:
MistPhizzle 2014-07-12 20:17:54 -04:00
parent 95ab22a554
commit ef812566da
2 changed files with 4 additions and 1 deletions

Binary file not shown.

View file

@ -91,7 +91,10 @@ public class FreezeMelt {
public static boolean canThaw(Block block) {
if (frozenblocks.containsKey(block)) {
for (Player player : block.getWorld().getPlayers()) {
if (Methods.getBoundAbility(player) != null && Methods.getBoundAbility(player).equalsIgnoreCase("OctopusForm")) {
if (Methods.getBoundAbility(player) == null) {
return true;
}
if (Methods.getBoundAbility(player).equalsIgnoreCase("OctopusForm")) {
if (block.getLocation().distance(player.getLocation()) <= OctopusForm.radius + 2)
return false;
}