From 65ddbba4ec46b8fcb947d93a56080e28bf96a8b3 Mon Sep 17 00:00:00 2001 From: InnovatorNZ's Ryzen 9 Desktop Date: Tue, 4 Oct 2022 16:10:16 +0800 Subject: [PATCH] Fixed a bug in OSM. --- src/plugin/nz/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugin/nz/index.js b/src/plugin/nz/index.js index aa2ffd5..9f1b760 100644 --- a/src/plugin/nz/index.js +++ b/src/plugin/nz/index.js @@ -4547,7 +4547,7 @@ system.registerGenerator({ setblock(x, y + this.base_y, z, blockStr, data); //调用NC的setBlock - this.block_list[new Vector3(x, y, z)] = new Block(id, data); + this.block_list[new Vector3(x, y, z)] = new myBlock(id, data); } setBaseY(y) {