1
0
mirror of https://github.com/mt-mods/homedecor_modpack.git synced 2025-08-02 19:50:17 +02:00

make wooden banister colorable via Unified Dyes

This commit is contained in:
Vanessa Dannenberg
2018-09-12 18:49:51 -04:00
parent 41455647a2
commit eb6089a03e
4 changed files with 42 additions and 8 deletions

View File

@ -3273,6 +3273,19 @@ for i in ipairs(homedecor.banister_materials) do
})
end
unifieddyes.register_color_craft({
output = "",
palette = "split",
neutral_node = "homedecor:banister_wood_horizontal",
type = "shapeless",
output_prefix = "homedecor:banister_wood_horizontal_",
output_suffix = "",
recipe = {
"NEUTRAL_NODE",
"MAIN_DYE",
}
})
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