From 146453b486bc80556be794d71424ccd3a9064e74 Mon Sep 17 00:00:00 2001 From: Milan* Date: Wed, 11 Jan 2017 17:25:02 +0100 Subject: [PATCH] add alternate moreblocks recipe for craft_guide:lcd_pc --- crafting.lua | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/crafting.lua b/crafting.lua index 63f0c2f..fd894f0 100644 --- a/crafting.lua +++ b/crafting.lua @@ -251,3 +251,12 @@ minetest.register_craft({ {"", "default:mese_crystal", ""}, }, }) + +minetest.register_craft({ + output = 'craft_guide:lcd_pc', + recipe = { + {'craft_guide:sign_wall'}, + {'default:glass'}, + {'moreblocks:slab_stone'}, + } +})