Skip to content

Commit

Permalink
Make method non-public
Browse files Browse the repository at this point in the history
  • Loading branch information
tastybento committed Feb 28, 2021
1 parent c483bd1 commit 58e4358
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ private Biome getBiome(BlockFace dir, double d) {
return en == null ? Biome.OCEAN : en.getValue();
}

public Vector getClosestIsland(Vector v) {
Vector getClosestIsland(Vector v) {
int d = dist * 2;
long x = Math.round((double) v.getBlockX() / d) * d + offsetX;
long z = Math.round((double) v.getBlockZ() / d) * d + offsetZ;
Expand Down

0 comments on commit 58e4358

Please sign in to comment.