First running version of BCLib
This commit is contained in:
parent
4c1e8273f6
commit
54f13847b5
7 changed files with 27 additions and 17 deletions
|
@ -378,7 +378,9 @@ public class StructureHelper {
|
|||
mut.setX(x);
|
||||
for (int z = bounds.minZ(); z <= bounds.maxZ(); z++) {
|
||||
mut.setZ(z);
|
||||
BlockState top = world.getBiome(mut).getGenerationSettings().getSurfaceBuilderConfig().getTopMaterial();
|
||||
BlockState top = Blocks.PURPLE_CONCRETE.defaultBlockState();
|
||||
//TODO: 1.18 find another way to get the Top Materiel
|
||||
//world.getBiome(mut).getGenerationSettings().getSurfaceBuilderConfig().getTopMaterial();
|
||||
for (int y = bounds.maxY(); y >= bounds.minY(); y--) {
|
||||
mut.setY(y);
|
||||
BlockState state = world.getBlockState(mut);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue