Skip to content

Commit 6aab033

Browse files
authored
Tiny fix#338 (#339)
1 parent 48b0ec0 commit 6aab033

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main/java/com/github/gtexpert/core/integration/ae/recipes/AEMaterialsRecipe.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ public static void init() {
336336
(int) GTEMaterials.FluixAlloy.getMass() * 3;
337337

338338
// Fluid
339-
if (Mods.DraconicEvolution.isModLoaded()) {
339+
if (GTEValues.isModLoadedDEDA()) {
340340
GCYMRecipeMaps.ALLOY_BLAST_RECIPES.recipeBuilder()
341341
.circuitMeta(15)
342342
.inputs(Mods.AppliedEnergistics2.getItem("material", 2, 45))

src/main/java/com/github/gtexpert/core/mixins/gcym/AlloyBlastRecipeProducerMixin.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
import gregicality.multiblocks.api.fluids.GCYMFluidStorageKeys;
2222
import gregicality.multiblocks.api.recipes.alloyblast.AlloyBlastRecipeProducer;
2323

24+
import com.github.gtexpert.core.api.GTEValues;
2425
import com.github.gtexpert.core.api.unification.material.GTEMaterials;
25-
import com.github.gtexpert.core.api.util.Mods;
2626

2727
@Mixin(value = AlloyBlastRecipeProducer.class, remap = false)
2828
public abstract class AlloyBlastRecipeProducerMixin {
@@ -46,7 +46,7 @@ private void buildRecipesMixin(@NotNull BlastProperty property, @NotNull Fluid m
4646
.duration((int) (duration * 0.67))
4747
.buildAndRegister();
4848

49-
if (Mods.DraconicEvolution.isModLoaded()) {
49+
if (GTEValues.isModLoadedDEDA()) {
5050
RecipeBuilder<BlastRecipeBuilder> builderPyrotheum = builder.copy();
5151
builderPyrotheum.notConsumable(new IntCircuitIngredient(getPyrotheumCircuitNum(componentAmount)))
5252
.fluidInputs(GTEMaterials.Pyrotheum.getFluid(GCYMFluidStorageKeys.MOLTEN, ABFPyrotheumAmount))

0 commit comments

Comments
 (0)