diff options
| author | Martin Robertz <dream-master@gmx.net> | 2023-04-21 21:39:12 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-21 21:39:12 +0200 |
| commit | 452c36d1d4ff812f0fcc536cbc048ce549b0998e (patch) | |
| tree | 81ab521819bf1c5f4a851ddd9cb9c10661d5aecd /src/main/java | |
| parent | e7d20f7d6e982e59f0816b114c6a5442b4cc31eb (diff) | |
| parent | fa0e78aabdae9435a403a823b8e9d0dec3019161 (diff) | |
| download | GT5-Unofficial-452c36d1d4ff812f0fcc536cbc048ce549b0998e.tar.gz GT5-Unofficial-452c36d1d4ff812f0fcc536cbc048ce549b0998e.tar.bz2 GT5-Unofficial-452c36d1d4ff812f0fcc536cbc048ce549b0998e.zip | |
Merge pull request #193 from GTNewHorizons/tengam
Use Attuned Tengam for UEV/UIV/UMV Motors
Diffstat (limited to 'src/main/java')
2 files changed, 5 insertions, 4 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 25724194a0..9905f834cd 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 @@ -1633,7 +1633,7 @@ public class ResearchStationAssemblyLine implements Runnable { comp_per_second, research_eu_per_tick, research_amperage, - new ItemStack[] { GT_OreDictUnificator.get(OrePrefixes.stickLong, Materials.SamariumMagnetic, 8L), + new ItemStack[] { GT_OreDictUnificator.get(OrePrefixes.stickLong, Materials.TengamAttuned, 8L), GT_OreDictUnificator.get(OrePrefixes.stickLong, Materials.Infinity, 16L), GT_OreDictUnificator.get(OrePrefixes.ring, Materials.Infinity, 8L), GT_OreDictUnificator.get(OrePrefixes.round, Materials.Infinity, 32L), @@ -1849,7 +1849,7 @@ public class ResearchStationAssemblyLine implements Runnable { comp_per_second, research_eu_per_tick, research_amperage, - new ItemStack[] { GT_OreDictUnificator.get(OrePrefixes.stickLong, Materials.SamariumMagnetic, 16L), + new ItemStack[] { GT_OreDictUnificator.get(OrePrefixes.stickLong, Materials.TengamAttuned, 16L), GT_OreDictUnificator.get(OrePrefixes.stickLong, MaterialsUEVplus.TranscendentMetal, 16L), GT_OreDictUnificator.get(OrePrefixes.ring, MaterialsUEVplus.TranscendentMetal, 8L), GT_OreDictUnificator.get(OrePrefixes.round, MaterialsUEVplus.TranscendentMetal, 32L), @@ -2072,7 +2072,7 @@ public class ResearchStationAssemblyLine implements Runnable { comp_per_second, research_eu_per_tick, research_amperage, - new ItemStack[] { GT_OreDictUnificator.get(OrePrefixes.stickLong, Materials.SamariumMagnetic, 32L), + new ItemStack[] { GT_OreDictUnificator.get(OrePrefixes.stickLong, Materials.TengamAttuned, 32L), GT_OreDictUnificator.get(OrePrefixes.stickLong, MaterialsUEVplus.SpaceTime, 16L), GT_OreDictUnificator.get(OrePrefixes.ring, MaterialsUEVplus.SpaceTime, 8L), GT_OreDictUnificator.get(OrePrefixes.round, MaterialsUEVplus.SpaceTime, 32L), diff --git a/src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/GT_MetaTileEntity_EM_EyeOfHarmony.java b/src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/GT_MetaTileEntity_EM_EyeOfHarmony.java index 78f10c0a1c..a9259018ac 100644 --- a/src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/GT_MetaTileEntity_EM_EyeOfHarmony.java +++ b/src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/GT_MetaTileEntity_EM_EyeOfHarmony.java @@ -56,6 +56,7 @@ import com.github.technus.tectech.thing.metaTileEntity.multi.base.render.TT_Rend import com.github.technus.tectech.util.CommonValues; import com.github.technus.tectech.util.ItemStackLong; import com.google.common.collect.ImmutableList; +import com.google.common.math.LongMath; import com.gtnewhorizon.structurelib.alignment.constructable.IConstructable; import com.gtnewhorizon.structurelib.alignment.constructable.ISurvivalConstructable; import com.gtnewhorizon.structurelib.structure.IItemSource; @@ -1345,7 +1346,7 @@ public class GT_MetaTileEntity_EM_EyeOfHarmony extends GT_MetaTileEntity_Multibl + " L"); } long euPerTick = euOutput / maxProgresstime(); - if (euPerTick < Math.pow(10, 12)) { + if (euPerTick < LongMath.pow(10, 12)) { str.add("Estimated EU/t: " + RED + formatNumbers(euOutput / maxProgresstime()) + RESET + " EU/t"); } else { str.add( |
