From 5f7a05eafa7eb6b37e09b3f0e1c3bf5d3e167585 Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Mon, 1 Sep 2014 22:40:59 -0400 Subject: [PATCH] add recipes for Wee and PiePad --- computer/recipes.lua | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/computer/recipes.lua b/computer/recipes.lua index cc8f0e10..663d6b79 100644 --- a/computer/recipes.lua +++ b/computer/recipes.lua @@ -61,6 +61,22 @@ minetest.register_craft({ }; }); +minetest.register_craft({ + output = "computer:wee"; + recipe = { + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", }, + { "homedecor:plastic_sheeting", "default:copper_ingot", "homedecor:plastic_sheeting", }, + }; +}); + +minetest.register_craft({ + output = "computer:piepad"; + recipe = { + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", }, + { "homedecor:plastic_sheeting", "default:glass", "homedecor:plastic_sheeting", }, + }; +}); + --new stuff minetest.register_craft({