forked from minetest-mods/moreblocks
Merge branch 'master' into nalc-1.2
This commit is contained in:
commit
866f7274ab
@ -14,9 +14,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|||||||
|
|
||||||
### Changed
|
### 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
|
- Stairs+ nodes now emit one light level less compared to full nodes to make up
|
||||||
for their smaller visual size.
|
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
|
## [1.3.0] - 2019-03-23
|
||||||
|
|
||||||
|
20
crafting.lua
20
crafting.lua
@ -35,15 +35,6 @@ minetest.register_craft({
|
|||||||
recipe = {"default:junglegrass", "default:cobble"},
|
recipe = {"default:junglegrass", "default:cobble"},
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
|
||||||
output = "moreblocks:wood_tile_center 9",
|
|
||||||
recipe = {
|
|
||||||
{"group:wood", "group:wood", "group:wood"},
|
|
||||||
{"group:wood", "moreblocks:wood_tile", "group:wood"},
|
|
||||||
{"group:wood", "group:wood", "group:wood"},
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "moreblocks:wood_tile 9",
|
output = "moreblocks:wood_tile 9",
|
||||||
recipe = {
|
recipe = {
|
||||||
@ -53,6 +44,17 @@ minetest.register_craft({
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
-- 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_center 9",
|
||||||
|
recipe = {
|
||||||
|
{"group:wood", "group:wood", "group:wood"},
|
||||||
|
{"group:wood", "moreblocks:wood_tile", "group:wood"},
|
||||||
|
{"group:wood", "group:wood", "group:wood"},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "moreblocks:wood_tile",
|
output = "moreblocks:wood_tile",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user