Changed synthstone recipe to crafting due to conflicts with other mods

This commit is contained in:
h-v-smacker 2018-02-10 07:54:26 +03:00
parent c063507d66
commit 26607e4ade
1 changed files with 5 additions and 2 deletions

View File

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