tin smelting changes

This commit is contained in:
Pyritie
2026-03-17 15:23:54 +00:00
parent a5628ade21
commit df2e52d524
3 changed files with 5 additions and 1 deletions

View File

@@ -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

View File

@@ -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])

View File

@@ -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);
}