Add more helper recipes to make more items accessible

This commit is contained in:
Wuzzy 2017-02-07 05:02:35 +01:00
parent 070ef3e003
commit cb2a65a25a
3 changed files with 55 additions and 2 deletions

View file

@ -171,3 +171,13 @@ minetest.register_craft({
recipe = "mcl_end:chorus_fruit",
cooktime = 10,
})
-- Temporary helper recipes
-- TODO: Remove them
minetest.register_craft({
output = "mcl_end:chorus_fruit",
recipe = {
{ "mcl_flowers:allium", "mcl_flowers:allium" },
{ "mcl_flowers:allium", "mcl_flowers:allium" },
},
})