From b2a7aa94a3e1e74f38e8e53a44fb9727bec877f7 Mon Sep 17 00:00:00 2001 From: rudzik8 Date: Wed, 23 Feb 2022 13:06:16 +0700 Subject: [PATCH] Update coalquartz tile craft rebalance it a bit (blocks -> regular craftitems) and add second craft option (swapped) --- register.lua | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/register.lua b/register.lua index 86bf077..88dbc12 100644 --- a/register.lua +++ b/register.lua @@ -15,8 +15,15 @@ minetest.register_node("mcl_decor:coalquartz_tile", { minetest.register_craft({ output = "mcl_decor:coalquartz_tile", recipe = { - {"mcl_core:coalblock", "mcl_nether:quartz_block"}, - {"mcl_nether:quartz_block", "mcl_core:coalblock"} + {"mcl_core:coal_lump", "mcl_nether:quartz"}, + {"mcl_nether:quartz", "mcl_core:coal_lump"} + } +}) +minetest.register_craft({ + output = "mcl_decor:coalquartz_tile", + recipe = { + {"mcl_nether:quartz", "mcl_core:coal_lump"}, + {"mcl_core:coal_lump", "mcl_nether:quartz"} } })