This commit is contained in:
2026-03-10 20:56:00 -03:00
parent c4fd8113c4
commit d753cf4364
7 changed files with 252 additions and 4 deletions
+2
View File
@@ -13,6 +13,8 @@ EverythingRegistry.register<TileRegistry>("tiles", "bworld:grass", {
tile.id = "bworld:hoed_dirt";
} else if (item?.type_id === "bworld:chest") {
world.dimension.add_tile(world, { x: tile.x, y: tile.y, id: "bworld:chest" });
} else if (item?.type_id === "bworld:furnace") {
world.dimension.add_tile(world, { x: tile.x, y: tile.y, id: "bworld:furnace", tickable: true });
}
},
});