From 37c0c5194a75da04d7820c0557bc6095ccc50979 Mon Sep 17 00:00:00 2001 From: Sceat Date: Thu, 16 Jan 2025 15:44:25 +0800 Subject: [PATCH] fix: missing imports --- src/processing/BlocksProcessing.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/processing/BlocksProcessing.ts b/src/processing/BlocksProcessing.ts index ac7d3e5..a02646d 100644 --- a/src/processing/BlocksProcessing.ts +++ b/src/processing/BlocksProcessing.ts @@ -6,18 +6,18 @@ import { ProcessingTask, ChunkContainer, DensityVolume, -} from '../index' +} from '../index.js' import { serializePatchId, getPatchId, asVect3, asVect2, parseThreeStub, -} from '../utils/convert' -import { PatchKey, GroundBlock, Block, BlockData } from '../utils/types' +} from '../utils/convert.js' +import { PatchKey, GroundBlock, Block, BlockData } from '../utils/types.js' -import { GroundBlockData, GroundPatch } from './GroundPatch' -import { ItemsBaker } from './ItemsProcessing' +import { GroundBlockData, GroundPatch } from './GroundPatch.js' +import { ItemsBaker } from './ItemsProcessing.js' export type BlocksBatchArgs = { posBatch: Vector2[]