Move helper recipes into new mod

This commit is contained in:
Wuzzy 2017-02-07 05:11:23 +01:00
parent cb2a65a25a
commit c7ca25e003
7 changed files with 92 additions and 84 deletions

View file

@ -246,24 +246,4 @@ minetest.register_craft({
recipe = {{"mcl_mobitems:bone"}},
})
-- Temporary helper recipes
-- TODO: Remove them
minetest.register_craft({
output = "mcl_dye:black 2",
recipe = {{"mcl_core:coal_lump"}},
})
minetest.register_craft({
output = "mcl_dye:brown",
recipe = {
{"mcl_core:jungletree"},
{"mcl_core:jungletree"}
},
})
minetest.register_craft({
output = "mcl_dye:white",
recipe = {
{"mcl_core:dirt", "mcl_core:dirt", "mcl_core:dirt"},
{"mcl_core:dirt", "mcl_core:dirt", "mcl_core:dirt"},
{"mcl_core:dirt", "mcl_core:dirt", "mcl_core:dirt"},
},
})