use "default:wood" explicitly in homedecor:table recipe

("group:wood" conflicts with lrfurn coffee table,
probably an issue with moreblocks)
This commit is contained in:
Vanessa Dannenberg 2018-10-25 12:40:13 -04:00
parent d4e85cbab2
commit c64dabfa28
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
minetest.register_craft({
output = "homedecor:table",
recipe = {
{ "group:wood","group:wood", "group:wood" },
{ "default:wood","default:wood", "default:wood" },
{ "group:stick", "", "group:stick" },
},
})