Added beeswax -> oil + yellow dye crafting recipe, using technic's centrifuge.

This commit is contained in:
cheapie 2014-12-26 11:38:39 -06:00 committed by Vanessa Ezekowitz
parent 258304569f
commit 0a1eb1c83c
2 changed files with 7 additions and 1 deletions

View File

@ -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

View File

@ -2,4 +2,6 @@ default
building_blocks?
signs_lib?
moreblocks?
technic?
dye?
bees?