Skip to content
This repository was archived by the owner on Sep 5, 2025. It is now read-only.

Commit 3c7415e

Browse files
authored
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
1 parent d55ae30 commit 3c7415e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/goodgenerator/blocks/tileEntity/LargeEssentiaGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ public IStructureDefinition<LargeEssentiaGenerator> getStructure_EM() {
179179
x.mTierLimit = Math.max(x.mTierLimit, 6);
180180
}, ofBlock(Loaders.essentiaCell, 2)), onElementPass(x -> {
181181
x.mStableValue += 10;
182-
x.mTierLimit = Math.max(x.mTierLimit, 7);
182+
x.mTierLimit = Math.max(x.mTierLimit, 8);
183183
},
184184
ofBlock(Loaders.essentiaCell, 3))))
185185
.addElement(

0 commit comments

Comments
 (0)