diff options
| author | RIONDY 'POPlol333' Adam <76914762+POPlol333@users.noreply.github.com> | 2023-05-29 15:51:27 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-29 15:51:27 +0200 |
| commit | 39fc45e09d8554a6834022425e5054c1f9636252 (patch) | |
| tree | a7b3512163598497d576c5a05c22aa51b0690c9e /src/main/java/com | |
| parent | 8f1fcf5e2f37c1c8b6d3416f16aca2fce55d3604 (diff) | |
| download | GT5-Unofficial-39fc45e09d8554a6834022425e5054c1f9636252.tar.gz GT5-Unofficial-39fc45e09d8554a6834022425e5054c1f9636252.tar.bz2 GT5-Unofficial-39fc45e09d8554a6834022425e5054c1f9636252.zip | |
butcher controller recipe time (#217)
* butcher controller recipe time
* oh lol tpm time too
Diffstat (limited to 'src/main/java/com')
| -rw-r--r-- | src/main/java/com/github/technus/tectech/loader/recipe/ResearchStationAssemblyLine.java | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/main/java/com/github/technus/tectech/loader/recipe/ResearchStationAssemblyLine.java b/src/main/java/com/github/technus/tectech/loader/recipe/ResearchStationAssemblyLine.java index ef80328c0f..30e6dc5094 100644 --- a/src/main/java/com/github/technus/tectech/loader/recipe/ResearchStationAssemblyLine.java +++ b/src/main/java/com/github/technus/tectech/loader/recipe/ResearchStationAssemblyLine.java @@ -25,6 +25,7 @@ import static gregtech.api.enums.Mods.SuperSolarPanels; import static gregtech.api.enums.Mods.Thaumcraft; import static gregtech.api.enums.Mods.TinkersGregworks; import static gregtech.api.util.GT_ModHandler.getModItem; +import static gregtech.api.util.GT_RecipeBuilder.MINUTES; import net.minecraft.item.ItemStack; import net.minecraftforge.fluids.Fluid; @@ -703,7 +704,7 @@ public class ResearchStationAssemblyLine implements Runnable { CustomItemList.eM_energyTunnel7_UV.get(1), 32_000_000, 4096, - 32_000_000, + (int) TierEU.UIV, 1, new Object[] { CustomItemList.eM_energyTunnel7_UV.get(32), new Object[] { OrePrefixes.circuit.get(Materials.Piko), 32L }, @@ -722,8 +723,8 @@ public class ResearchStationAssemblyLine implements Runnable { MaterialsUEVplus.ExcitedDTRC.getFluid(2_048_000), MaterialsUEVplus.ExcitedDTEC.getFluid(2_048_000), }, ItemList.Machine_Multi_TranscendentPlasmaMixer.get(1), - 36_000, - 32_000_000); + 5 * MINUTES, + (int) TierEU.UIV); // Stargate Recipes if (EternalSingularity.isModLoaded() && SGCraft.isModLoaded()) { @@ -866,8 +867,8 @@ public class ResearchStationAssemblyLine implements Runnable { new FluidStack(FluidRegistry.getFluid("molten.californium"), 36864), Materials.NaquadahEnriched.getMolten(36864L) }, ItemList.Machine_Multi_PlasmaForge.get(1), - 72000, - 32_000_000); + 5 * MINUTES, + (int) TierEU.RECIPE_UIV); // Dimensional bridge. TT_recipeAdder.addResearchableAssemblylineRecipe( |
