diff options
Diffstat (limited to 'moreblocks')
-rw-r--r-- | moreblocks/CHANGELOG.md | 6 | ||||
-rw-r--r-- | moreblocks/crafting.lua | 10 |
2 files changed, 11 insertions, 5 deletions
diff --git a/moreblocks/CHANGELOG.md b/moreblocks/CHANGELOG.md index 6199159..217536c 100644 --- a/moreblocks/CHANGELOG.md +++ b/moreblocks/CHANGELOG.md @@ -14,9 +14,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### Changed +- The minimum supported Minetest version is now 5.0.0. - Stairs+ nodes now emit one light level less compared to full nodes to make up for their smaller visual size. -- The minimum supported Minetest version is now 5.0.0. + +### Fixed + +- Fixed a recipe conflict that made Centered Wooden Tiles impossible to craft. ## [1.3.0] - 2019-03-23 diff --git a/moreblocks/crafting.lua b/moreblocks/crafting.lua index 468667d..0655391 100644 --- a/moreblocks/crafting.lua +++ b/moreblocks/crafting.lua @@ -36,19 +36,21 @@ minetest.register_craft({ }) minetest.register_craft({ - output = "moreblocks:wood_tile_center 9", + output = "moreblocks:wood_tile 9", recipe = { {"group:wood", "group:wood", "group:wood"}, - {"group:wood", "moreblocks:wood_tile", "group:wood"}, + {"group:wood", "group:wood", "group:wood"}, {"group:wood", "group:wood", "group:wood"}, } }) +-- This must be registered after `moreblocks:wood_tile` to avoid recipe conflicts, +-- since `moreblocks:wood_tile` is part of `group:wood` minetest.register_craft({ - output = "moreblocks:wood_tile 9", + output = "moreblocks:wood_tile_center 9", recipe = { {"group:wood", "group:wood", "group:wood"}, - {"group:wood", "group:wood", "group:wood"}, + {"group:wood", "moreblocks:wood_tile", "group:wood"}, {"group:wood", "group:wood", "group:wood"}, } }) |