Add a bedrock base to ocean floor. #138

This commit is contained in:
tastybento 2023-05-12 08:44:44 -07:00
parent cd5e31a1a4
commit 83f28a672f
1 changed files with 2 additions and 0 deletions

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, 15, worldInfo.getMinHeight() + 1 , 15, Material.BEDROCK);
}
@Override