From 5df7141d71b8b883c971507407d06685ff0225c3 Mon Sep 17 00:00:00 2001 From: Evert Prants Date: Wed, 20 Nov 2019 18:54:30 +0200 Subject: [PATCH] Iron cap recipe clashes with armor mods --- register.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/register.lua b/register.lua index 5cf2884..56351fb 100644 --- a/register.lua +++ b/register.lua @@ -299,8 +299,9 @@ end minetest.register_craft({ recipe = { - {"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"}, - {"default:steel_ingot", "", "default:steel_ingot"}, + {"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"}, + {"", "default:steel_ingot", "default:steel_ingot"}, + {"", "", "default:steel_ingot"}, }, output = "magicalities:cap_steel", })