Change circular saw recipe to use wood instead of tree.

This commit is contained in:
Calinou 2014-05-04 17:54:26 +02:00
parent d335d0dd3c
commit af378ac739
1 changed files with 3 additions and 3 deletions

View File

@ -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"},
}
})