From 7a044ec4e9eb0d178678c57ec92cf2ee1e8b1a3c Mon Sep 17 00:00:00 2001 From: FaceDeer Date: Wed, 1 Feb 2017 22:16:38 -0700 Subject: [PATCH] generalize the sticks required for Digtron structure blocks --- recipes.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes.lua b/recipes.lua index ecd8397..5df3119 100644 --- a/recipes.lua +++ b/recipes.lua @@ -127,9 +127,9 @@ minetest.register_craft({ minetest.register_craft({ output = "digtron:structure", recipe = { - {"default:stick","","default:stick"}, + {"group:stick","","group:stick"}, {"","digtron:digtron_core",""}, - {"default:stick","","default:stick"} + {"group:stick","","group:stick"} } })