Skip to content

Commit

Permalink
Fixed issue with CTM
Browse files Browse the repository at this point in the history
  • Loading branch information
Asek3 committed Mar 9, 2024
1 parent 262b868 commit 2453b1f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public ChunkBuildResult<T> performBuild(ChunkRenderCacheLocal cache, ChunkBuildB

final long seed = MathUtil.hashPos(pos);

if (cache.getBlockRenderer().renderModel(cache.getLocalSlice(), blockState.getBlock().getExtendedState(blockState, slice, pos), pos, model, buffers.get(layer), true, seed)) {
if (cache.getBlockRenderer().renderModel(cache.getLocalSlice(), blockState.getBlock().getExtendedState(blockState, cache.getLocalSlice(), pos), pos, model, buffers.get(layer), true, seed)) {
bounds.addBlock(relX, relY, relZ);
}

Expand Down

1 comment on commit 2453b1f

@embeddedt
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice catch

Please sign in to comment.