Format anti hack fix class.
This commit is contained in:
parent
82163e376b
commit
71a0cd44a2
@ -72,9 +72,15 @@ public class AntiHackFix implements Listener
|
|||||||
Block blockSouthEast = block.getRelative(BlockFace.SOUTH_EAST);
|
Block blockSouthEast = block.getRelative(BlockFace.SOUTH_EAST);
|
||||||
Block blockSouthWest = block.getRelative(BlockFace.SOUTH_WEST);
|
Block blockSouthWest = block.getRelative(BlockFace.SOUTH_WEST);
|
||||||
|
|
||||||
return !block.isEmpty() || !blockNorth.isEmpty() || !blockSouth.isEmpty() || !blockEast.isEmpty()
|
return !block.isEmpty() ||
|
||||||
|| !blockWest.isEmpty() || !blockNorthEast.isEmpty() || !blockNorthWest.isEmpty()
|
!blockNorth.isEmpty() ||
|
||||||
|| !blockSouthEast.isEmpty() || !blockSouthWest.isEmpty();
|
!blockSouth.isEmpty() ||
|
||||||
|
!blockEast.isEmpty() ||
|
||||||
|
!blockWest.isEmpty() ||
|
||||||
|
!blockNorthEast.isEmpty() ||
|
||||||
|
!blockNorthWest.isEmpty() ||
|
||||||
|
!blockSouthEast.isEmpty() ||
|
||||||
|
!blockSouthWest.isEmpty();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void clear()
|
public void clear()
|
||||||
|
Loading…
Reference in New Issue
Block a user