Skip to content

Commit

Permalink
fix: defaulting to return ground (without entities) for blocks batch …
Browse files Browse the repository at this point in the history
…request
  • Loading branch information
etienne-85 committed Aug 14, 2024
1 parent b66c6be commit 23ce824
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compute/world-compute.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const computePatch = (patchKey: PatchKey) => {

export const computeBlocksBatch = (
blockPosBatch: Vector3[],
params = { includeEntitiesBlocks: true },
params = { includeEntitiesBlocks: false },
) => {
const blocksBatch = blockPosBatch.map(({ x, z }) => {
const block_pos = new Vector3(x, 0, z)
Expand Down

0 comments on commit 23ce824

Please sign in to comment.