mirror of
https://github.com/TotalFreedomMC/TF-ProjectKorra.git
synced 2025-02-11 11:40:40 +00:00
parent
599ecf6426
commit
287006936a
2 changed files with 1 additions and 4 deletions
Binary file not shown.
|
@ -91,10 +91,7 @@ public class FreezeMelt {
|
|||
public static boolean canThaw(Block block) {
|
||||
if (frozenblocks.containsKey(block)) {
|
||||
for (Player player : block.getWorld().getPlayers()) {
|
||||
if (Methods.getBoundAbility(player) == null) {
|
||||
return true;
|
||||
}
|
||||
if (Methods.getBoundAbility(player).equalsIgnoreCase("OctopusForm")) {
|
||||
if (Methods.getBoundAbility(player) != null && Methods.getBoundAbility(player).equalsIgnoreCase("OctopusForm")) {
|
||||
if (block.getLocation().distance(player.getLocation()) <= OctopusForm.radius + 2)
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue