Do not check blocks when looking for a new island spot

This commit is contained in:
tastybento 2021-02-28 15:37:28 -08:00
parent ae02b7970a
commit c483bd1766

View File

@ -1622,4 +1622,10 @@ public class Settings implements WorldSettings {
public void setSeed(long seed) { public void setSeed(long seed) {
this.seed = seed; this.seed = seed;
} }
@Override
public boolean isCheckForBlocks() {
// Do not check for blocks when looking for a new island spot
return false;
}
} }