Skip to content

Commit 1e443ae

Browse files
authored
Merge pull request #308 from GTModpackTeam/tier-fix-fluixAlloy-spotless-fixes
Spotless apply for branch tier-fix-fluixAlloy for #307
2 parents dba6269 + bc0aa2e commit 1e443ae

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

src/main/java/gtexpert/integration/ae/recipes/AEMaterialsRecipe.java

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
import static gregtech.api.unification.ore.OrePrefix.*;
55
import static gtexpert.integration.deda.recipes.DraconicMaterialsRecipe.ABFDurationMultiplier;
66

7+
import net.minecraftforge.fluids.FluidStack;
8+
79
import gregtech.api.fluids.store.FluidStorageKeys;
810
import gregtech.api.recipes.ModHandler;
911
import gregtech.api.recipes.RecipeMaps;
@@ -16,19 +18,16 @@
1618
import gregtech.api.unification.material.properties.PropertyKey;
1719
import gregtech.api.unification.stack.UnificationEntry;
1820
import gregtech.common.ConfigHolder;
21+
import gregtech.common.items.MetaItems;
1922

2023
import gregicality.multiblocks.api.fluids.GCYMFluidStorageKeys;
2124
import gregicality.multiblocks.api.recipes.GCYMRecipeMaps;
2225

23-
import gregtech.common.items.MetaItems;
24-
2526
import gtexpert.api.GTEValues;
2627
import gtexpert.api.unification.material.GTEMaterials;
2728
import gtexpert.api.util.Mods;
2829
import gtexpert.loaders.recipe.handlers.GTEImplosionRecipeHandler;
2930

30-
import net.minecraftforge.fluids.FluidStack;
31-
3231
public class AEMaterialsRecipe {
3332

3433
public static void init() {
@@ -330,8 +329,10 @@ public static void init() {
330329
int durationFluixAlloy = propertyFluixAlloy.getDurationOverride();
331330
if (durationFluixAlloy < 0) durationFluixAlloy = Math.max(1,
332331
(int) (GTEMaterials.FluixAlloy.getMass() * propertyFluixAlloy.getBlastTemperature() / 100L));
333-
int vacuumEUt = propertyFluixAlloy.getVacuumEUtOverride() != -1 ? propertyFluixAlloy.getVacuumEUtOverride() : VA[MV];
334-
int vacuumDuration = propertyFluixAlloy.getVacuumDurationOverride() != -1 ? propertyFluixAlloy.getVacuumDurationOverride() :
332+
int vacuumEUt = propertyFluixAlloy.getVacuumEUtOverride() != -1 ? propertyFluixAlloy.getVacuumEUtOverride() :
333+
VA[MV];
334+
int vacuumDuration = propertyFluixAlloy.getVacuumDurationOverride() != -1 ?
335+
propertyFluixAlloy.getVacuumDurationOverride() :
335336
(int) GTEMaterials.FluixAlloy.getMass() * 3;
336337

337338
// Fluid

0 commit comments

Comments
 (0)