From e38fadd86385b691f3f5523ce07a958d03a0edd8 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Fri, 7 Dec 2018 21:37:52 +0100 Subject: [PATCH] Remove packed ice crafting recipe for now Ice cannot be obtained legally yet (missing silk touch). --- mods/ITEMS/mcl_core/crafting.lua | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/mods/ITEMS/mcl_core/crafting.lua b/mods/ITEMS/mcl_core/crafting.lua index 52d2b1c4..382c136f 100644 --- a/mods/ITEMS/mcl_core/crafting.lua +++ b/mods/ITEMS/mcl_core/crafting.lua @@ -399,14 +399,8 @@ minetest.register_craft({ } }) -minetest.register_craft({ - output = 'mcl_core:packed_ice', - recipe = { - {'mcl_core:ice', 'mcl_core:ice', 'mcl_core:ice'}, - {'mcl_core:ice', 'mcl_core:ice', 'mcl_core:ice'}, - {'mcl_core:ice', 'mcl_core:ice', 'mcl_core:ice'}, - } -}) +-- TODO: Add crafting recipe: 9 ice → 1 packed ice +-- Add it when silk touch tools work. -- -- Crafting (tool repair) -- 2.11.4.GIT