From df2e52d524caed55c9613ef01f37e7686a40b2c3 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Tue, 17 Mar 2026 15:23:54 +0000 Subject: [PATCH] tin smelting changes --- CHANGELOG.md | 1 + kubejs/server_scripts/tfg/mv_rework/material.recipes.js | 2 +- .../tfg/materials/material_modification.ores.js | 3 +++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ea89f5cbe..1d6da2ef9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ - Cleaned up some of the stonecutter recipes so there should be fewer duplicates @Pyritie - Added equivalent assembler recipes for Immersive Aircraft crafting table recipes (#3410) @SpicyNoodle5 - Changed the rain screen effect to a clear transparent texture instead of blue dots (#3422) @applenper +- Cassiterite and Cassiterite Sand ores now smelt directly into 1 tin instead of 2, to match TFC @Pyritie ### Bug fixes - Fixed the field guide not working @Mqrius - Fixed not being able to put the copper spindle on a tool rack (#3445) @DrEthan77 diff --git a/kubejs/server_scripts/tfg/mv_rework/material.recipes.js b/kubejs/server_scripts/tfg/mv_rework/material.recipes.js index 5fc949b76..fce54dfd2 100644 --- a/kubejs/server_scripts/tfg/mv_rework/material.recipes.js +++ b/kubejs/server_scripts/tfg/mv_rework/material.recipes.js @@ -64,7 +64,7 @@ function registerTFGMVMaterialRecipes(event) { Item.of('gtceu:aluminium_dust', 1), Item.of('gtceu:boron_dust', 1)) .inputFluids(Fluid.of('gtceu:carbon_monoxide', 1000)) - .itemOutputs(Item.of('tfg:rene_41_dust', 7)) + .itemOutputs(Item.of('tfg:rene_41_dust', 14)) .outputFluids(Fluid.of('gtceu:oxygen', 1000)) .duration(20 * 92) .EUt(GTValues.VA[GTValues.MV]) diff --git a/kubejs/startup_scripts/tfg/materials/material_modification.ores.js b/kubejs/startup_scripts/tfg/materials/material_modification.ores.js index f867b443d..37ad834d7 100644 --- a/kubejs/startup_scripts/tfg/materials/material_modification.ores.js +++ b/kubejs/startup_scripts/tfg/materials/material_modification.ores.js @@ -30,4 +30,7 @@ function registerTFGOresMaterialModification(event) { GTMaterials.GraniticMineralSand.getProperty(PropertyKey.ORE).setOreByProducts(GTMaterials.get('tfg:igneous_felsic'), GTMaterials.Magnetite, GTMaterials.Magnetite); GTMaterials.BasalticMineralSand.getProperty(PropertyKey.ORE).setOreByProducts(GTMaterials.get('tfg:igneous_mafic'), GTMaterials.Magnetite, GTMaterials.Magnetite); + // Change ore multipliers + GTMaterials.Cassiterite.getProperty(PropertyKey.ORE).setOreMultiplier(1); + GTMaterials.CassiteriteSand.getProperty(PropertyKey.ORE).setOreMultiplier(1); } \ No newline at end of file