Format anti hack fix class.

This commit is contained in:
Thanos paravantis 2016-01-06 14:47:34 +02:00
parent 82163e376b
commit 71a0cd44a2
1 changed files with 9 additions and 3 deletions

View File

@ -72,9 +72,15 @@ public class AntiHackFix implements Listener
Block blockSouthEast = block.getRelative(BlockFace.SOUTH_EAST);
Block blockSouthWest = block.getRelative(BlockFace.SOUTH_WEST);
return !block.isEmpty() || !blockNorth.isEmpty() || !blockSouth.isEmpty() || !blockEast.isEmpty()
|| !blockWest.isEmpty() || !blockNorthEast.isEmpty() || !blockNorthWest.isEmpty()
|| !blockSouthEast.isEmpty() || !blockSouthWest.isEmpty();
return !block.isEmpty() ||
!blockNorth.isEmpty() ||
!blockSouth.isEmpty() ||
!blockEast.isEmpty() ||
!blockWest.isEmpty() ||
!blockNorthEast.isEmpty() ||
!blockNorthWest.isEmpty() ||
!blockSouthEast.isEmpty() ||
!blockSouthWest.isEmpty();
}
public void clear()