Make chorus flower craftable

This commit is contained in:
Wuzzy 2018-01-23 04:30:59 +01:00
parent 101285d04d
commit f3a3681e7b
1 changed files with 9 additions and 0 deletions

View File

@ -158,3 +158,12 @@ minetest.register_craft({
output = "mcl_core:gold_ingot 9",
recipe = {{ "mcl_core:emerald" }},
})
minetest.register_craft({
output = "mcl_end:chorus_flower",
recipe = {
{ "mcl_end:chorus_fruit","mcl_end:chorus_fruit","mcl_end:chorus_fruit" },
{ "mcl_end:chorus_fruit","mcl_end:chorus_fruit","mcl_end:chorus_fruit" },
{ "mcl_end:chorus_fruit","mcl_end:chorus_fruit","mcl_end:chorus_fruit" },
}
})