Skip to content

Commit

Permalink
Do not check blocks when looking for a new island spot
Browse files Browse the repository at this point in the history
  • Loading branch information
tastybento committed Feb 28, 2021
1 parent ae02b79 commit c483bd1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/main/java/world/bentobox/boxed/Settings.java
Original file line number Diff line number Diff line change
Expand Up @@ -1622,4 +1622,10 @@ public long getSeed() {
public void setSeed(long seed) {
this.seed = seed;
}

@Override
public boolean isCheckForBlocks() {
// Do not check for blocks when looking for a new island spot
return false;
}
}

0 comments on commit c483bd1

Please sign in to comment.