Skip to content

Commit

Permalink
Implements #49
Browse files Browse the repository at this point in the history
  • Loading branch information
tastybento committed Mar 17, 2021
1 parent 1963ef4 commit a6bf2da
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/main/java/world/bentobox/skygrid/Settings.java
Expand Up @@ -1610,4 +1610,14 @@ public void setMakeNetherPortals(boolean makeNetherPortals) {
public void setMakeEndPortals(boolean makeEndPortals) {
this.makeEndPortals = makeEndPortals;
}

/**
* SkyGrid should not check for blocks.
* @return false
*/
@Override
public boolean isCheckForBlocks()
{
return false;
}
}

0 comments on commit a6bf2da

Please sign in to comment.