Merge pull request #139 from BentoBoxWorld/develop

Version 1.18.0
This commit is contained in:
tastybento 2023-05-14 08:25:09 -07:00 committed by GitHub
commit e3bb98f623
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -65,7 +65,7 @@
<!-- Do not change unless you want different name for local builds. -->
<build.number>-LOCAL</build.number>
<!-- This allows to change between versions. -->
<build.version>1.17.2</build.version>
<build.version>1.18.0</build.version>
<!-- Sonar Cloud -->
<sonar.projectKey>BentoBoxWorld_AcidIsland</sonar.projectKey>
<sonar.organization>bentobox-world</sonar.organization>

View File

@ -76,6 +76,8 @@ public class ChunkGeneratorWorld extends ChunkGenerator {
}
}
}
// Make an solid base so sand doesn't fall into the void
chunkData.setRegion(0, worldInfo.getMinHeight(), 0, 16, worldInfo.getMinHeight() + 1 , 16, Material.BEDROCK);
}
@Override