Skip to content

Commit

Permalink
add moreores and technic support for mineclone* games (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
programmerjake authored Sep 23, 2024
1 parent 78295d9 commit 3729628
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/materials/mineclonia.lua
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,16 @@ local materials = {
stick = "mcl_core:stick",
}

return materials
if minetest.get_modpath("moreores") then
materials.tin_ingot = "moreores:tin_ingot"
materials.tin_block = "moreores:tin_block"
materials.silver_ingot = "moreores:silver_ingot"
end

if minetest.get_modpath("technic") then
materials.lead_ingot = "technic:lead_ingot"
materials.carbon_steel_ingot = "technic:carbon_steel_ingot"
materials.stainless_steel_ingot = "technic:stainless_steel_ingot"
end

return materials

0 comments on commit 3729628

Please sign in to comment.