diff options
author | Calinou <calinou@opmbx.org> | 2014-05-04 17:54:26 +0200 |
---|---|---|
committer | Calinou <calinou@opmbx.org> | 2014-05-04 17:54:26 +0200 |
commit | af378ac73988e623609aa56841fb42e24ffd1d6d (patch) | |
tree | fe9584f7fb572608613a997eb2699beb9cfe9122 | |
parent | d335d0dd3c060c26264320e5891052b6ff741a26 (diff) | |
download | moreblocks-af378ac73988e623609aa56841fb42e24ffd1d6d.tar.gz moreblocks-af378ac73988e623609aa56841fb42e24ffd1d6d.tar.bz2 moreblocks-af378ac73988e623609aa56841fb42e24ffd1d6d.zip |
Change circular saw recipe to use wood instead of tree.
-rw-r--r-- | crafting.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crafting.lua b/crafting.lua index 26c72e4..56513e2 100644 --- a/crafting.lua +++ b/crafting.lua @@ -414,11 +414,11 @@ minetest.register_craft({ }) minetest.register_craft({ - output = "moreblocks:circular_saw 1", + output = "moreblocks:circular_saw", recipe = { { "", "default:steel_ingot", "" }, - { "default:tree", "default:tree", "default:tree"}, - { "default:tree", "", "default:tree"}, + { "group:wood", "group:wood", "group:wood"}, + { "group:wood", "", "group:wood"}, } }) |