diff options
author | Glease <4586901+Glease@users.noreply.github.com> | 2022-12-02 20:44:22 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-02 13:44:22 +0100 |
commit | 1ffa67ff2fd281ced2a276c28cf33e8a8a703d68 (patch) | |
tree | 1d5f5455353b1c09f39c3ab228151046118824c6 /src/main/java/gregtech/loaders | |
parent | 6f6af0b1aeace22e84f6097c33aff1adfb660fad (diff) | |
download | GT5-Unofficial-1ffa67ff2fd281ced2a276c28cf33e8a8a703d68.tar.gz GT5-Unofficial-1ffa67ff2fd281ced2a276c28cf33e8a8a703d68.tar.bz2 GT5-Unofficial-1ffa67ff2fd281ced2a276c28cf33e8a8a703d68.zip |
reduce replicator power consumption by 1/16 to allow cable loss (#1532)
Diffstat (limited to 'src/main/java/gregtech/loaders')
-rw-r--r-- | src/main/java/gregtech/loaders/postload/GT_PostLoad.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main/java/gregtech/loaders/postload/GT_PostLoad.java b/src/main/java/gregtech/loaders/postload/GT_PostLoad.java index 3d38488393..585857c50a 100644 --- a/src/main/java/gregtech/loaders/postload/GT_PostLoad.java +++ b/src/main/java/gregtech/loaders/postload/GT_PostLoad.java @@ -1,6 +1,7 @@ package gregtech.loaders.postload; import static gregtech.api.enums.GT_Values.MOD_ID_FR; +import static gregtech.api.enums.GT_Values.VP; import com.google.common.base.Stopwatch; import cpw.mods.fml.common.Loader; @@ -279,7 +280,7 @@ public class GT_PostLoad { new FluidStack[] {Materials.UUMatter.getFluid(tMaterial.getMass())}, null, (int) (tMaterial.getMass() * 512L), - 30, + (int) VP[1], 0); } tInput = GT_OreDictUnificator.get(OrePrefixes.cell, tMaterial, 1L); @@ -303,7 +304,7 @@ public class GT_PostLoad { new FluidStack[] {Materials.UUMatter.getFluid(tMaterial.getMass())}, null, (int) (tMaterial.getMass() * 512L), - 30, + (int) VP[1], 0); } } |