1
0
mirror of https://codeberg.org/tenplus1/bonemeal.git synced 2025-07-12 05:10:29 +02:00

can craft dye from mulch, bonemeal, fertiliser

This commit is contained in:
TenPlus1
2020-05-04 20:52:27 +01:00
parent 48718b60f7
commit 93f7eb44d6
2 changed files with 18 additions and 0 deletions

View File

@ -141,3 +141,20 @@ if minetest.get_modpath("caverealms") then
{"caverealms:mushroom_sapling", add_shroom, "soil"}
})
end
if minetest.get_modpath("dye") then
local bonemeal_dyes = {
bonemeal = "white", fertiliser = "green", mulch = "brown"}
for mat, dye in pairs(bonemeal_dyes) do
minetest.register_craft({
output = "dye:" .. dye .. " 4",
recipe = {
{"bonemeal:" .. mat}
},
})
end
end