Skip to content
Snippets Groups Projects
Commit 5f7a05ea authored by Vanessa Ezekowitz's avatar Vanessa Ezekowitz
Browse files

add recipes for Wee and PiePad

parent 5d0dae8e
No related branches found
No related tags found
No related merge requests found
...@@ -61,6 +61,22 @@ minetest.register_craft({ ...@@ -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 --new stuff
minetest.register_craft({ minetest.register_craft({
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment