diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d048e97b..cd8d82457 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,13 +3,16 @@ ## [Unreleased] ### New features ### Bug fixes +- Fixed double ingots not having a temperature (#1165) @Pyritie +- Removed a few recipes that had unobtainable create-related materials @Pyritie +- Fixed the color of placed zinc ingots and plated blocks to match the material @Pyritie +- Fixed some other steel/colored steel items being extractable in LV @Pyritie ### Changes - Changed pineapple yarn recipe from assembler to wiremill & coiling machine, like the other strings (#1162) @Pyritie - Lowered durability of wooden tongs @Pyritie - Streamlined the Metallurgy Age quest chapter a bit @Pyritie - Mushroom blocks now drop way less mushroom @Pyritie - ## [0.9.11] - 13.06.2025 ### New features - Added back the vanilla stonecutter @Pyritie diff --git a/kubejs/server_scripts/create/tags.js b/kubejs/server_scripts/create/tags.js index 22487693c..9253c1cbb 100644 --- a/kubejs/server_scripts/create/tags.js +++ b/kubejs/server_scripts/create/tags.js @@ -46,10 +46,18 @@ const registerCreateItemTags = (event) => { event.add('create:blaze_burner_fuel/special', "gtceu:flawless_coal_gem") event.add('create:blaze_burner_fuel/special', "gtceu:exquisite_coal_gem") event.add('create:blaze_burner_fuel/special', "gtceu:coke_gem") - event.add('create:blaze_burner_fuel/special', "beneath:cursecoal") + // Lets the basin be put on top of a charcoal forge event.add('tfc:forge_invisible_whitelist', 'create:basin') + // Allows automation with the 3x3 Hellforge + event.add('tfc:forge_invisible_whitelist', 'tfcchannelcasting:channel') + event.add('tfc:forge_invisible_whitelist', 'tfcchannelcasting:mold_table') + event.add('tfc:forge_invisible_whitelist', 'greate:steel_mechanical_pump') + event.add('tfc:forge_invisible_whitelist', 'greate:aluminum_mechanical_pump') + event.add('tfc:forge_invisible_whitelist', 'greate:stainless_steel_mechanical_pump') + event.add('tfc:forge_invisible_whitelist', 'greate:titanium_mechanical_pump') + event.add('create:non_movable', 'gtceu:wood_crate') event.add('create:non_movable', 'gtceu:bronze_crate') event.add('create:non_movable', 'gtceu:steel_crate') @@ -88,6 +96,14 @@ const registerCreateBlockTags = (event) => { // Lets the basin be put on top of a charcoal forge event.add('tfc:forge_invisible_whitelist', 'create:basin') + + // Allows automation with the 3x3 Hellforge + event.add('tfc:forge_invisible_whitelist', 'tfcchannelcasting:channel') + event.add('tfc:forge_invisible_whitelist', 'tfcchannelcasting:mold_table') + event.add('tfc:forge_invisible_whitelist', 'greate:steel_mechanical_pump') + event.add('tfc:forge_invisible_whitelist', 'greate:aluminum_mechanical_pump') + event.add('tfc:forge_invisible_whitelist', 'greate:stainless_steel_mechanical_pump') + event.add('tfc:forge_invisible_whitelist', 'greate:titanium_mechanical_pump') } diff --git a/kubejs/server_scripts/gregtech/recipes.materials.js b/kubejs/server_scripts/gregtech/recipes.materials.js index f4ab5a5d1..da593efcc 100644 --- a/kubejs/server_scripts/gregtech/recipes.materials.js +++ b/kubejs/server_scripts/gregtech/recipes.materials.js @@ -79,7 +79,7 @@ function registerGTCEUMetalRecipes(event) { .outputFluids(Fluid.of(material.getFluid(), 144)) .duration(material.getMass() * 6) .category(GTRecipeCategories.EXTRACTOR_RECYCLING) - .EUt(GTValues.VA[GTValues.ULV]) + .EUt(material.hasProperty(PropertyKey.BLAST) ? GTValues.VA[GTValues.MV] : GTValues.VA[GTValues.ULV]) } } else if (material.hasProperty(PropertyKey.GEM)) { @@ -600,7 +600,7 @@ function registerGTCEUMetalRecipes(event) { .outputFluids(Fluid.of(material.getFluid(), 14 * 144)) .duration(material.getMass() * 32) .category(GTRecipeCategories.EXTRACTOR_RECYCLING) - .EUt(GTValues.VA[GTValues.ULV]) + .EUt(material.hasProperty(PropertyKey.BLAST) ? GTValues.VA[GTValues.MV] : GTValues.VA[GTValues.ULV]) event.recipes.gtceu.alloy_smelter(`tfg:cast_${material.getName()}_anvil`) .itemInputs(ChemicalHelper.get(TagPrefix.ingot, material, 14)) @@ -676,7 +676,7 @@ function registerGTCEUMetalRecipes(event) { .outputFluids(Fluid.of(material.getFluid(), 144)) .duration(material.getMass() * 8) .category(GTRecipeCategories.EXTRACTOR_RECYCLING) - .EUt(GTValues.VA[GTValues.ULV]) + .EUt(material.hasProperty(PropertyKey.BLAST) ? GTValues.VA[GTValues.MV] : GTValues.VA[GTValues.ULV]) event.recipes.gtceu.alloy_smelter(`tfg:cast_${material.getName()}_unfinished_lamp`) .itemInputs(materialIngotStack) @@ -721,7 +721,7 @@ function registerGTCEUMetalRecipes(event) { .outputFluids(Fluid.of(material.getFluid(), 144)) .duration(material.getMass() * 7) .category(GTRecipeCategories.EXTRACTOR_RECYCLING) - .EUt(GTValues.VA[GTValues.ULV]) + .EUt(material.hasProperty(PropertyKey.BLAST) ? GTValues.VA[GTValues.MV] : GTValues.VA[GTValues.ULV]) event.recipes.gtceu.alloy_smelter(`tfg:cast_${material.getName()}_trapdoor`) .itemInputs(materialIngotStack) @@ -769,7 +769,7 @@ function registerGTCEUMetalRecipes(event) { .outputFluids(Fluid.of(material.getFluid(), 9)) .duration(material.getMass() * 3) .category(GTRecipeCategories.EXTRACTOR_RECYCLING) - .EUt(GTValues.VA[GTValues.ULV]) + .EUt(material.hasProperty(PropertyKey.BLAST) ? GTValues.VA[GTValues.MV] : GTValues.VA[GTValues.ULV]) event.recipes.gtceu.alloy_smelter(`tfg:cast_${material.getName()}_chain`) .itemInputs(materialIngotStack)