Skip to content

Commit

Permalink
Use raw ores for iron and gold lumps in Mineclone (#342)
Browse files Browse the repository at this point in the history
  • Loading branch information
programmerjake authored Jan 13, 2024
1 parent da0378a commit e77a671
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions technic/materials.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ technic.materials = {
cobble = has_mcl and "mcl_core:cobble" or "default:cobble",
mossycobble = has_mcl and "mcl_core:mossycobble" or "default:mossycobble",
gold_ingot = has_mcl and "mcl_core:gold_ingot" or "default:gold_ingot",
gold_lump = has_mcl and "mcl_core:gold_nugget" or "default:gold_lump",
gold_lump = has_mcl and "mcl_raw_ores:raw_gold" or "default:gold_lump",
steel_ingot = has_mcl and "mcl_core:iron_ingot" or "default:steel_ingot",
iron_lump = has_mcl and "mcl_core:iron_nugget" or "default:iron_lump",
iron_lump = has_mcl and "mcl_raw_ores:raw_iron" or "default:iron_lump",
diamond = has_mcl and "mcl_core:diamond" or "default:diamond",
dirt = has_mcl and "mcl_core:dirt" or "default:dirt",
tin_ingot = has_mcl and "mcl_core:iron_ingot" or "default:tin_ingot",
Expand Down

0 comments on commit e77a671

Please sign in to comment.