forked from VoxeLibre/VoxeLibre
Register horse armor smelting recipes elsewhere
This commit is contained in:
parent
34e9b7ea47
commit
11bd39774a
|
@ -242,6 +242,20 @@ minetest.register_craft({
|
|||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = 'mcl_core:iron_nugget',
|
||||
recipe = 'mobs_mc:iron_horse_armor',
|
||||
cooktime = 10,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = 'mcl_core:gold_nugget',
|
||||
recipe = 'mobs_mc:gold_horse_armor',
|
||||
cooktime = 10,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'mcl_core:sandstone',
|
||||
recipe = {
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
mcl_core
|
||||
mcl_hunger
|
||||
mobs_mc
|
||||
|
|
|
@ -421,22 +421,6 @@ minetest.register_craft({
|
|||
recipe = {{"mcl_core:slimeblock"}},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = 'mcl_core:iron_nugget',
|
||||
recipe = 'mobs_mc:iron_horse_armor',
|
||||
cooktime = 10,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = 'mcl_core:gold_nugget',
|
||||
recipe = 'mobs_mc:gold_horse_armor',
|
||||
cooktime = 10,
|
||||
})
|
||||
|
||||
|
||||
|
||||
minetest.register_craft({
|
||||
output = "mcl_core:slimeblock",
|
||||
recipe = {{"mcl_mobitems:slimeball","mcl_mobitems:slimeball","mcl_mobitems:slimeball",},
|
||||
|
|
Loading…
Reference in New Issue