From 13ae6bb645a7c6193ef7ab22eb43be040a6eb4f6 Mon Sep 17 00:00:00 2001 From: Jacob Lifshay Date: Fri, 27 Sep 2024 22:29:07 -0700 Subject: [PATCH] Use moreores tin when moreores and mcl_core are detected Fixes: #381 --- technic/materials.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/technic/materials.lua b/technic/materials.lua index bd381055..4baf6a8f 100644 --- a/technic/materials.lua +++ b/technic/materials.lua @@ -71,3 +71,8 @@ technic.materials = { pick_silver = has_moreores and "moreores:pick_silver" or has_mcl and "mcl_tools:pick_gold" or "default:gold_pickaxe", mithril_block = has_moreores and "moreores:mithril_block" or has_mcl and "mcl_core:lapisblock" or "default:goldblock", } + +if has_mcl and has_moreores then + technic.materials.tin_ingot = "moreores:tin_ingot" + technic.materials.tin_lump = "moreores:tin_lump" +end