Remove potato and carrot crafting

This commit is contained in:
Wuzzy 2017-02-10 17:14:06 +01:00
parent 8857a4cbb8
commit 3056ac58ab
1 changed files with 1 additions and 17 deletions

View File

@ -189,16 +189,8 @@ minetest.register_craft({
output = "mcl_farming:melon_seeds",
recipe = {
{"mcl_farming:beetroot_soup", "mcl_farming:beetroot_soup", "mcl_farming:beetroot_soup"},
{"mcl_farming:beetroot_soup", "mcl_farming:carrot_item", "mcl_farming:beetroot_soup"},
{"mcl_farming:beetroot_soup", "mcl_farming:beetroot_soup", "mcl_farming:beetroot_soup"},
{"mcl_farming:beetroot_soup", "mcl_farming:beetroot_soup", "mcl_farming:beetroot_soup"},
},
})
minetest.register_craft({
output = "mcl_farming:potato_item",
recipe = {
{"mcl_dye:brown", "mcl_dye:brown", "mcl_dye:brown"},
{"mcl_dye:brown", "mcl_dye:brown", "mcl_dye:brown"},
{"mcl_dye:brown", "mcl_dye:brown", "mcl_dye:brown"},
},
})
minetest.register_craft({
@ -209,11 +201,3 @@ minetest.register_craft({
{"mcl_farming:potato_item","mcl_farming:potato_item","mcl_farming:potato_item"},
},
})
minetest.register_craft({
output = "mcl_farming:carrot_item",
recipe = {
{"mcl_flowers:poppy", "mcl_flowers:oxeye_daisy", "mcl_flowers:dandelion",},
{"mcl_flowers:tulip_pink", "mcl_flowers:tulip_orange", "mcl_flowers:tulip_red",},
{"mcl_flowers:blue_orchid", "mcl_flowers:azure_bluet", "mcl_flowers:allium",}
},
})