From 0a1eb1c83c276b7e4236dd3ce3991698644036ab Mon Sep 17 00:00:00 2001 From: cheapie Date: Fri, 26 Dec 2014 11:38:39 -0600 Subject: [PATCH] Added beeswax -> oil + yellow dye crafting recipe, using technic's centrifuge. --- homedecor/crafts.lua | 4 ++++ homedecor/depends.txt | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/homedecor/crafts.lua b/homedecor/crafts.lua index 575b0999..bed1830c 100644 --- a/homedecor/crafts.lua +++ b/homedecor/crafts.lua @@ -2909,3 +2909,7 @@ minetest.register_craft({ { "","default:paper","" } }, }) + +if (minetest.get_modpath("technic") and minetest.get_modpath("dye") and minetest.get_modpath("bees")) then + technic.register_separating_recipe({ input = {"bees:wax 1"}, output = {"homedecor:oil_extract 2","dye:yellow 1"} }) +end \ No newline at end of file diff --git a/homedecor/depends.txt b/homedecor/depends.txt index 8bfd9018..4c32571c 100644 --- a/homedecor/depends.txt +++ b/homedecor/depends.txt @@ -2,4 +2,6 @@ default building_blocks? signs_lib? moreblocks? - +technic? +dye? +bees?