From 21ccde6deb2374742032557008b9178bfc230531 Mon Sep 17 00:00:00 2001 From: nixnoxus <87639406+nixnoxus@users.noreply.github.com> Date: Wed, 21 Jul 2021 13:15:00 +0200 Subject: [PATCH] Add an alternative recipe for "ccompass:0" (#19) The current one collides with "digtron:digtron_core" --- init.lua | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/init.lua b/init.lua index 27ac181..03bf4ec 100644 --- a/init.lua +++ b/init.lua @@ -391,4 +391,13 @@ minetest.register_craft({ {'', 'default:steel_ingot', ''} } }) +-- add an alternative recipe +minetest.register_craft({ + output = 'ccompass:0', + recipe = { + {'default:steel_ingot', '', 'default:steel_ingot'}, + {'', 'default:mese_crystal_fragment', ''}, + {'default:steel_ingot', '', 'default:steel_ingot'} + } +})