forked from VoxeLibre/VoxeLibre
Remove more helper recipes
This commit is contained in:
parent
cc15d6be6d
commit
1189b8d299
|
@ -57,15 +57,6 @@ minetest.register_craft({
|
|||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "mcl_nether:nether_wart_item",
|
||||
recipe = {
|
||||
{"mcl_nether:soul_sand", "mcl_core:obsidian", "mcl_nether:soul_sand"},
|
||||
{"mcl_core:obsidian", "mcl_core:goldblock", "mcl_core:obsidian"},
|
||||
{"mcl_nether:soul_sand", "mcl_core:obsidian", "mcl_nether:soul_sand"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "3d_armor:helmet_chain",
|
||||
recipe = {
|
||||
|
@ -124,11 +115,15 @@ minetest.register_craft({
|
|||
{ "mcl_core:glass_black", "mcl_core:glass_black", "mcl_core:glass_black", },
|
||||
}
|
||||
})
|
||||
|
||||
-- 2 discs are dropped by creeper
|
||||
-- 1 disc is droppd by zombie
|
||||
-- TODO: Remove/fix these drops when creeper drops music discs properly
|
||||
|
||||
|
||||
-- Saplings, to complete the set of saplings in v6 mapgen.
|
||||
-- 3 tree species are missing in v6.
|
||||
local mg_name = minetest.get_mapgen_setting("mg_name")
|
||||
if mg_name == "v6" then
|
||||
minetest.register_craft({
|
||||
output = "mcl_core:darksapling",
|
||||
recipe = {
|
||||
|
@ -155,3 +150,4 @@ minetest.register_craft({
|
|||
{ "mcl_core:sprucesapling", "mcl_core:sprucesapling", "mcl_core:sprucesapling" },
|
||||
},
|
||||
})
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue