From c64dabfa285ee72e4d8d2cbca3948ad679103eff Mon Sep 17 00:00:00 2001 From: Vanessa Dannenberg Date: Thu, 25 Oct 2018 12:40:13 -0400 Subject: [PATCH] use "default:wood" explicitly in homedecor:table recipe ("group:wood" conflicts with lrfurn coffee table, probably an issue with moreblocks) --- homedecor/furniture_recipes.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homedecor/furniture_recipes.lua b/homedecor/furniture_recipes.lua index a995242c..51482c7b 100644 --- a/homedecor/furniture_recipes.lua +++ b/homedecor/furniture_recipes.lua @@ -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" }, }, })