Skip to content

Commit

Permalink
Raise max structure Z size from 256 to 512 in structure void logic (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmdinnc authored Dec 8, 2023
1 parent a21c87b commit b2a8da3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ public static CompletableFuture<RespawningStructure> withParameters(StructuresPl

// save locations of structure void blocks
int size1 = 1 + (Math.max(clipboard.getDimensions().getBlockX(), Math.max(clipboard.getDimensions().getBlockY(), clipboard.getDimensions().getBlockZ())) >> 4);
MemBlockSet structureVoidBlocks = new MemBlockSet(size1, 0, 0, 0, 15);
MemBlockSet structureVoidBlocks = new MemBlockSet(size1, 0, 0, 0, 32);
BlockType structureVoid = BlockType.REGISTRY.get("minecraft:structure_void");
if (structureVoid != null) {
BlockVector3 minimumPoint = clipboard.getMinimumPoint();
Expand Down

0 comments on commit b2a8da3

Please sign in to comment.