mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2025-02-17 21:23:44 +01:00
Fix leather recipes
This commit is contained in:
@ -1,6 +1,6 @@
|
|||||||
-- Armor Configuration
|
-- Armor Configuration
|
||||||
ARMOR_MATERIALS = {
|
ARMOR_MATERIALS = {
|
||||||
leather = "mobs:leather",
|
leather = "mcl_mobitems:leather",
|
||||||
iron = "default:steel_ingot",
|
iron = "default:steel_ingot",
|
||||||
chain = nil,
|
chain = nil,
|
||||||
gold = "default:gold_ingot",
|
gold = "default:gold_ingot",
|
||||||
|
@ -150,7 +150,7 @@ minetest.register_tool("3d_armor:boots_chain", {
|
|||||||
-- Register Craft Recipies
|
-- Register Craft Recipies
|
||||||
|
|
||||||
local craft_ingreds = {
|
local craft_ingreds = {
|
||||||
leather = { "mobs:leather" },
|
leather = { "mcl_mobitems:leather" },
|
||||||
steel = { "default:steel_ingot", "default:iron_nugget" },
|
steel = { "default:steel_ingot", "default:iron_nugget" },
|
||||||
gold = { "default:gold_ingot", "default:gold_nugget" },
|
gold = { "default:gold_ingot", "default:gold_nugget" },
|
||||||
diamond = { "default:diamond" },
|
diamond = { "default:diamond" },
|
||||||
|
@ -2,14 +2,7 @@
|
|||||||
if minetest.get_modpath("lucky_block") then
|
if minetest.get_modpath("lucky_block") then
|
||||||
|
|
||||||
lucky_block:add_blocks({
|
lucky_block:add_blocks({
|
||||||
{"dro", {"mobs:meat_raw"}, 5},
|
|
||||||
{"dro", {"mobs:meat"}, 5},
|
|
||||||
{"dro", {"mobs:nametag"}, 1},
|
{"dro", {"mobs:nametag"}, 1},
|
||||||
{"dro", {"mobs:leather"}, 5},
|
|
||||||
{"dro", {"mobs:net"}, 1},
|
|
||||||
{"dro", {"mobs:magic_lasso"}, 1},
|
|
||||||
{"dro", {"mobs:shears"}, 1},
|
|
||||||
{"dro", {"mobs:protector"}, 1},
|
|
||||||
{"lig"},
|
{"lig"},
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
Reference in New Issue
Block a user