diff options
author | Connor-Colenso <52056774+Connor-Colenso@users.noreply.github.com> | 2023-06-19 13:12:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-19 14:12:37 +0200 |
commit | 938e398c36d2473904e6fc4e7c2fa20dc8d9e81e (patch) | |
tree | ae65e200f2de37d0cd4a23af5bc336d3afe95871 /src/main | |
parent | bebc0d153cfa0d5406aec7d136e6f248337f60be (diff) | |
download | GT5-Unofficial-938e398c36d2473904e6fc4e7c2fa20dc8d9e81e.tar.gz GT5-Unofficial-938e398c36d2473904e6fc4e7c2fa20dc8d9e81e.tar.bz2 GT5-Unofficial-938e398c36d2473904e6fc4e7c2fa20dc8d9e81e.zip |
Fix EOH recipe time (#223)
This recipe was "buffed" by ~170x by someone to a nonsense number. The user at this tier is making likely in the region of 500B EU/t, if not more. OCing this 5-6 times will cost 236B - 1T EU/t and take 375-750 seconds. A much more reasonable value.
For comparison, this multi at its best makes 12T EU/t, that means that the EU cost to craft this currently is 6% of 1 tick of energy output. This is clearly absurd.
In future please discuss content changes with the actual author to get intent rather than randomly changing things.
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/com/github/technus/tectech/loader/recipe/ResearchStationAssemblyLine.java | 2 |
1 files changed, 1 insertions, 1 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 8789fb1707..7bcf771e4d 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 @@ -2572,7 +2572,7 @@ public class ResearchStationAssemblyLine implements Runnable { FluidUtils.getFluidStack("molten.metastable oganesson", 144 * 256 * 4), FluidUtils.getFluidStack("molten.shirabon", 144 * 256 * 4), }, CustomItemList.Machine_Multi_EyeOfHarmony.get(1), - 5 * MINUTES, + 400 * MINUTES, (int) TierEU.RECIPE_UMV); } |