fix: missing id property in save schem dialog
This commit is contained in:
parent
0c0251426b
commit
b48d691573
1 changed files with 1 additions and 1 deletions
|
|
@ -58,7 +58,7 @@ function SaveLitematic({ close }: DialogProps) {
|
||||||
.map(([key, value]) => `${key}=${value}`)
|
.map(([key, value]) => `${key}=${value}`)
|
||||||
.join(",")}]`
|
.join(",")}]`
|
||||||
: "";
|
: "";
|
||||||
return `minecraft:${blockInfo}${properties}`;
|
return `minecraft:${blockInfo.id}${properties}`;
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
).reduce<Record<string, nbt.Int32<number>>>((acc, blockName, index) => {
|
).reduce<Record<string, nbt.Int32<number>>>((acc, blockName, index) => {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue