Skip to content

Commit

Permalink
Cooking mese results in wires not crystals (#81)
Browse files Browse the repository at this point in the history
Fixes the not so logical introduction of cooking mese tools to crystals in #78
  • Loading branch information
SwissalpS authored Dec 12, 2024
1 parent 2842c7b commit 1a2c8c4
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions crafts.lua
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ minetest.register_craft({


-- 2020-10-21
-- cookable tools and armor (91 recipes total)
-- cookable tools and armor

local cookable_items = {
{"farming:scythe_mithril", "moreores:mithril_ingot 3"},
Expand All @@ -131,8 +131,10 @@ local tool_materials = {

-- assume mese unmeltable unless mesecons_wires exists
if minetest.get_modpath("mesecons_wires") then
tool_materials["mese"] = {"default:mese_crystal", 1}
table.insert(cookable_items, {"multitools:multitool_mese", "default:mese_crystal 9"})
tool_materials["mese"] = { "mesecons:wire_00000000_off", 18 }
table.insert(cookable_items, {
"multitools:multitool_mese", "mesecons:wire_00000000_off 162"
})
end

local tool_items = {["hoe"] = 2, ["shovel"] = 1, ["sword"] = 2, ["axe"] = 3, ["pick"] = 3}
Expand Down

0 comments on commit 1a2c8c4

Please sign in to comment.