forked from VoxeLibre/VoxeLibre
Make horse armor smeltable
This commit is contained in:
parent
f26d2c34e4
commit
a0863a47bf
|
@ -1,2 +1,3 @@
|
||||||
mcl_core
|
mcl_core
|
||||||
mcl_hunger
|
mcl_hunger
|
||||||
|
mobs_mc
|
||||||
|
|
|
@ -421,6 +421,22 @@ minetest.register_craft({
|
||||||
recipe = {{"mcl_core:slimeblock"}},
|
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({
|
minetest.register_craft({
|
||||||
output = "mcl_core:slimeblock",
|
output = "mcl_core:slimeblock",
|
||||||
recipe = {{"mcl_mobitems:slimeball","mcl_mobitems:slimeball","mcl_mobitems:slimeball",},
|
recipe = {{"mcl_mobitems:slimeball","mcl_mobitems:slimeball","mcl_mobitems:slimeball",},
|
||||||
|
|
Loading…
Reference in New Issue