Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 13 additions & 12 deletions item_overrides.lua
Original file line number Diff line number Diff line change
Expand Up @@ -106,17 +106,18 @@ if minetest.get_modpath("cottages") then
minetest.chat_send_player(player:get_player_name(), "Not repairable on the anvil")
return 0
end,
drop = {
max_items = 1,
items = {
{rarity=1, items={"default:steel_ingot 6"}},
{rarity=1, items={"default:steel_ingot 5"}},
{rarity=1, items={"default:steel_ingot 4"}},
{rarity=1, items={"default:steel_ingot 3"}},
{rarity=1, items={"default:steel_ingot 2"}},
{rarity=1, items={"default:steel_ingot"}},
}
},
-- Remove the behaviour that the Anvil is to be Mined about to 6 Wrought Iron Ingots and gets Mined as an Anvil
-- drop = {
-- max_items = 1,
-- items = {
-- {rarity=1, items={"default:steel_ingot 6"}},
-- {rarity=1, items={"default:steel_ingot 5"}},
-- {rarity=1, items={"default:steel_ingot 4"}},
-- {rarity=1, items={"default:steel_ingot 3"}},
-- {rarity=1, items={"default:steel_ingot 2"}},
-- {rarity=1, items={"default:steel_ingot"}},
-- }
-- },
})
end

Expand Down Expand Up @@ -333,4 +334,4 @@ end

if minetest.get_modpath("aqua_farming") then
add_groups("aqua_farming:salt", "vessel")
end
end