We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e44f468 commit 0c2a9d9Copy full SHA for 0c2a9d9
src/editor/Schematics.ts
@@ -79,7 +79,8 @@ export function litematicToStructure(root: NbtCompound) {
79
return tempDataview.getBigUint64(0)
80
})
81
82
- const bits = Math.ceil(Math.log2(palette.length)) // unlike chunks, bits is not at least 4
+ // litematica use at least 2 bits for palette indices (https://github.com/misode/vscode-nbt/issues/76)
83
+ const bits = Math.max(2, Math.ceil(Math.log2(palette.length)))
84
const bigBits = BigInt(bits)
85
const big0 = BigInt(0)
86
const big64 = BigInt(64)
0 commit comments