1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2025-12-22 01:25:31 +01:00

Remove/Tweak (nearly) all unknown recipes

This commit is contained in:
LeMagnesium
2015-08-10 17:12:27 +02:00
parent b8b1c606e2
commit 399ece08b6
9 changed files with 71 additions and 33 deletions

View File

@@ -463,3 +463,30 @@ if minetest.setting_getbool("moreblocks.circular_saw_crafting") ~= false then --
}
})
end
-- MODIFICATION MADE FOR MFF //MFF(Mg|08/09/15)
minetest.register_craft({
output = "moreblocks:horizontal_jungle_tree 2",
recipe = {
{"default:jungletree", "", "default:jungletree"},
}
})
minetest.register_craft({
output = "default:jungletree 2",
recipe = {
{"moreblocks:horizontal_jungle_tree"},
{"moreblocks:horizontal_jungle_tree"},
}
})
minetest.register_craft({
output = "default:junglewood 4",
recipe = {
{"moreblocks:horizontal_jungle_tree"},
}
})
-- END OF MODIFICATIONS