Skip to content

Commit

Permalink
iterate down from max build height for nether roof renderer, closes #64
Browse files Browse the repository at this point in the history
  • Loading branch information
granny committed Nov 4, 2024
1 parent 4c2d0d2 commit bbb72e4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public void scanData(@NotNull Region region) {
continue;
}

int blockY = chunk.noHeightmap() ? getWorld().getMaxBuildHeight() : chunk.getWorldSurfaceY(blockX, blockZ) + 1;
int blockY = getWorld().getMaxBuildHeight() + 1;
int fluidY = 0;
BlockState blockstate;
BlockState fluidstate = null;
Expand Down

0 comments on commit bbb72e4

Please sign in to comment.