From 26607e4adebc172b851d019cb256218772f2d70b Mon Sep 17 00:00:00 2001 From: h-v-smacker Date: Sat, 10 Feb 2018 07:54:26 +0300 Subject: [PATCH] Changed synthstone recipe to crafting due to conflicts with other mods --- crafting.lua | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/crafting.lua b/crafting.lua index be8632a..5c428e1 100644 --- a/crafting.lua +++ b/crafting.lua @@ -549,8 +549,11 @@ end -- a colored synthetic stone. minetest.register_craft({ - type = "cooking", - recipe = "default:gravel", + recipe = { + { "", "default:gravel", "" }, + { "default:gravel", "", "default:gravel"}, + { "", "default:gravel", ""}, + }, output = "moreblocks:synthstone" })