From 908720f9cf3a58977ada901e0857a5c5d1cf3816 Mon Sep 17 00:00:00 2001 From: ko_no <90126004+MrKono@users.noreply.github.com> Date: Sun, 30 Nov 2025 22:59:18 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=E3=83=95=E3=83=A9=E3=82=B0=E3=83=9F?= =?UTF-8?q?=E3=82=B9=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../core/mixins/gcym/AlloyBlastRecipeProducerMixin.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/github/gtexpert/core/mixins/gcym/AlloyBlastRecipeProducerMixin.java b/src/main/java/com/github/gtexpert/core/mixins/gcym/AlloyBlastRecipeProducerMixin.java index ef99aab7..0279dfe2 100644 --- a/src/main/java/com/github/gtexpert/core/mixins/gcym/AlloyBlastRecipeProducerMixin.java +++ b/src/main/java/com/github/gtexpert/core/mixins/gcym/AlloyBlastRecipeProducerMixin.java @@ -21,8 +21,8 @@ import gregicality.multiblocks.api.fluids.GCYMFluidStorageKeys; import gregicality.multiblocks.api.recipes.alloyblast.AlloyBlastRecipeProducer; +import com.github.gtexpert.core.api.GTEValues; import com.github.gtexpert.core.api.unification.material.GTEMaterials; -import com.github.gtexpert.core.api.util.Mods; @Mixin(value = AlloyBlastRecipeProducer.class, remap = false) public abstract class AlloyBlastRecipeProducerMixin { @@ -46,7 +46,7 @@ private void buildRecipesMixin(@NotNull BlastProperty property, @NotNull Fluid m .duration((int) (duration * 0.67)) .buildAndRegister(); - if (Mods.DraconicEvolution.isModLoaded()) { + if (GTEValues.isModLoadedDEDA()) { RecipeBuilder builderPyrotheum = builder.copy(); builderPyrotheum.notConsumable(new IntCircuitIngredient(getPyrotheumCircuitNum(componentAmount))) .fluidInputs(GTEMaterials.Pyrotheum.getFluid(GCYMFluidStorageKeys.MOLTEN, ABFPyrotheumAmount)) From e9570dd83d3709a1c379a4da22dcbe0fff4e9402 Mon Sep 17 00:00:00 2001 From: ko_no <90126004+MrKono@users.noreply.github.com> Date: Sun, 30 Nov 2025 22:59:49 +0900 Subject: [PATCH 2/2] =?UTF-8?q?=E3=81=AC=E3=82=8B=E3=81=BD=E4=BA=88?= =?UTF-8?q?=E9=98=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../gtexpert/core/integration/ae/recipes/AEMaterialsRecipe.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/github/gtexpert/core/integration/ae/recipes/AEMaterialsRecipe.java b/src/main/java/com/github/gtexpert/core/integration/ae/recipes/AEMaterialsRecipe.java index 9588f21a..1fe917cc 100644 --- a/src/main/java/com/github/gtexpert/core/integration/ae/recipes/AEMaterialsRecipe.java +++ b/src/main/java/com/github/gtexpert/core/integration/ae/recipes/AEMaterialsRecipe.java @@ -336,7 +336,7 @@ public static void init() { (int) GTEMaterials.FluixAlloy.getMass() * 3; // Fluid - if (Mods.DraconicEvolution.isModLoaded()) { + if (GTEValues.isModLoadedDEDA()) { GCYMRecipeMaps.ALLOY_BLAST_RECIPES.recipeBuilder() .circuitMeta(15) .inputs(Mods.AppliedEnergistics2.getItem("material", 2, 45))