|
4 | 4 | import static gregtech.api.unification.ore.OrePrefix.*; |
5 | 5 | import static gtexpert.integration.deda.recipes.DraconicMaterialsRecipe.ABFDurationMultiplier; |
6 | 6 |
|
| 7 | +import net.minecraftforge.fluids.FluidStack; |
| 8 | + |
7 | 9 | import gregtech.api.fluids.store.FluidStorageKeys; |
8 | 10 | import gregtech.api.recipes.ModHandler; |
9 | 11 | import gregtech.api.recipes.RecipeMaps; |
|
16 | 18 | import gregtech.api.unification.material.properties.PropertyKey; |
17 | 19 | import gregtech.api.unification.stack.UnificationEntry; |
18 | 20 | import gregtech.common.ConfigHolder; |
| 21 | +import gregtech.common.items.MetaItems; |
19 | 22 |
|
20 | 23 | import gregicality.multiblocks.api.fluids.GCYMFluidStorageKeys; |
21 | 24 | import gregicality.multiblocks.api.recipes.GCYMRecipeMaps; |
22 | 25 |
|
23 | | -import gregtech.common.items.MetaItems; |
24 | | - |
25 | 26 | import gtexpert.api.GTEValues; |
26 | 27 | import gtexpert.api.unification.material.GTEMaterials; |
27 | 28 | import gtexpert.api.util.Mods; |
28 | 29 | import gtexpert.loaders.recipe.handlers.GTEImplosionRecipeHandler; |
29 | 30 |
|
30 | | -import net.minecraftforge.fluids.FluidStack; |
31 | | - |
32 | 31 | public class AEMaterialsRecipe { |
33 | 32 |
|
34 | 33 | public static void init() { |
@@ -330,8 +329,10 @@ public static void init() { |
330 | 329 | int durationFluixAlloy = propertyFluixAlloy.getDurationOverride(); |
331 | 330 | if (durationFluixAlloy < 0) durationFluixAlloy = Math.max(1, |
332 | 331 | (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() : |
335 | 336 | (int) GTEMaterials.FluixAlloy.getMass() * 3; |
336 | 337 |
|
337 | 338 | // Fluid |
|
0 commit comments