Skip to content

Commit

Permalink
Fixes #127
Browse files Browse the repository at this point in the history
  • Loading branch information
GregoriusT committed Sep 7, 2024
1 parent 01dcf1b commit 109d733
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/main/java/gregapi/recipes/maps/RecipeMapFurnaceFuel.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2021 GregTech-6 Team
* Copyright (c) 2024 GregTech-6 Team
*
* This file is part of GregTech.
*
Expand All @@ -19,10 +19,6 @@

package gregapi.recipes.maps;

import static gregapi.data.CS.*;

import java.util.Collection;

import gregapi.data.FL;
import gregapi.data.OP;
import gregapi.data.TD;
Expand All @@ -37,6 +33,10 @@
import net.minecraft.item.ItemStack;
import net.minecraftforge.fluids.FluidStack;

import java.util.Collection;

import static gregapi.data.CS.*;

/**
* @author Gregorius Techneticies
*/
Expand Down Expand Up @@ -76,7 +76,7 @@ public Recipe findRecipe(IHasWorldAndCoords aTileEntity, Recipe aRecipe, boolean
for (int i = 1; i < 64; i++) {
ItemStack tAshes = OM.dust(tMaterial.mMaterial, tMaterial.mAmount * i);
if (ST.valid(tAshes)) {
rRecipe = new Recipe(F, F, T, ST.array(ST.amount(i, aInputs[0])), ST.array(tAshes), null, null, null, null, tFuelValue * EU_PER_FURNACE_TICK, -1, 0);
rRecipe = new Recipe(F, F, T, ST.array(ST.amount(i, aInputs[0])), ST.array(tAshes), null, null, null, null, tFuelValue * i * EU_PER_FURNACE_TICK, -1, 0);
break;
}
}
Expand Down

0 comments on commit 109d733

Please sign in to comment.