summaryrefslogtreecommitdiff
path: root/moreblocks
diff options
context:
space:
mode:
authorVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2019-05-23 15:29:04 -0400
committerVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2019-05-23 15:29:04 -0400
commit952f9f2b2897668224f580b45fd1634254a4d159 (patch)
treedc80f5dd9577992c94bab2fe1ea5bb5fe1d37df3 /moreblocks
parentea9e0c62c9b3c02a3cf31696c567abc879012798 (diff)
downloaddreambuilder_modpack-952f9f2b2897668224f580b45fd1634254a4d159.tar
dreambuilder_modpack-952f9f2b2897668224f580b45fd1634254a4d159.tar.gz
dreambuilder_modpack-952f9f2b2897668224f580b45fd1634254a4d159.tar.bz2
dreambuilder_modpack-952f9f2b2897668224f580b45fd1634254a4d159.tar.xz
dreambuilder_modpack-952f9f2b2897668224f580b45fd1634254a4d159.zip
update farming, moreblocks, and moreores
Diffstat (limited to 'moreblocks')
-rw-r--r--moreblocks/CHANGELOG.md6
-rw-r--r--moreblocks/crafting.lua10
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"},
}
})