diff options
author | Alastors <78517796+Alastors@users.noreply.github.com> | 2023-07-01 13:08:21 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-01 19:08:21 +0200 |
commit | 3c7415e303bb59a6280658408e3669ecd86e177b (patch) | |
tree | 502886cb4e89e513b217fb91870d13cc31efe02f /src/main/java/goodgenerator/blocks/tileEntity | |
parent | d55ae3058fc4a78517a07a833aaa89ab2874dbc3 (diff) | |
download | GT5-Unofficial-3c7415e303bb59a6280658408e3669ecd86e177b.tar.gz GT5-Unofficial-3c7415e303bb59a6280658408e3669ecd86e177b.tar.bz2 GT5-Unofficial-3c7415e303bb59a6280658408e3669ecd86e177b.zip |
Buffing the LEG to UV for the LEG Laser nerf (#169)
As has been discussed in #magic-dev in the face of chochom's laser nuke on the LEG, we need to update this value to have a max at either UV or UHV, I have set it here for UV but I'm open to suggestions
Diffstat (limited to 'src/main/java/goodgenerator/blocks/tileEntity')
-rw-r--r-- | src/main/java/goodgenerator/blocks/tileEntity/LargeEssentiaGenerator.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/goodgenerator/blocks/tileEntity/LargeEssentiaGenerator.java b/src/main/java/goodgenerator/blocks/tileEntity/LargeEssentiaGenerator.java index 589e13077b..5f67b7f19d 100644 --- a/src/main/java/goodgenerator/blocks/tileEntity/LargeEssentiaGenerator.java +++ b/src/main/java/goodgenerator/blocks/tileEntity/LargeEssentiaGenerator.java @@ -179,7 +179,7 @@ public class LargeEssentiaGenerator extends GT_MetaTileEntity_TooltipMultiBlockB x.mTierLimit = Math.max(x.mTierLimit, 6); }, ofBlock(Loaders.essentiaCell, 2)), onElementPass(x -> { x.mStableValue += 10; - x.mTierLimit = Math.max(x.mTierLimit, 7); + x.mTierLimit = Math.max(x.mTierLimit, 8); }, ofBlock(Loaders.essentiaCell, 3)))) .addElement( |