From d14ddda2c70cdcb3a9b2227f5891375d8298026e Mon Sep 17 00:00:00 2001 From: Connor-Colenso <52056774+Connor-Colenso@users.noreply.github.com> Date: Tue, 2 Aug 2022 14:48:10 +0100 Subject: More OpV purging (#1186) Co-authored-by: GTNH-Colen <54497873+GTNH-Colen@users.noreply.github.com> --- src/main/java/gregtech/api/enums/GT_Values.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/main/java/gregtech/api') diff --git a/src/main/java/gregtech/api/enums/GT_Values.java b/src/main/java/gregtech/api/enums/GT_Values.java index f0a29e2dfc..725f41868d 100644 --- a/src/main/java/gregtech/api/enums/GT_Values.java +++ b/src/main/java/gregtech/api/enums/GT_Values.java @@ -85,10 +85,10 @@ public class GT_Values { new long[]{ 8L, 32L, 128L, 512L, 2048L, 8192L, - 32768L, 131072L, 524288L, - 2097152L, 8388608L, 33554432L, - 134217728L, 536870912L, 1073741824L, - Integer.MAX_VALUE - 7}; + 32_768L, 131_072L, 524_288L, + 2_097_152L, 8_388_608L, 33_554_432L, + 134_217_728L, 536_870_912L, Integer.MAX_VALUE - 7}; + // Why -7? Mystery of the universe. Something may break if you change this so please do not without extensive testing. //TODO:Adding that in coremod!!! //TODO:tier 14,15 wires and transformers only (not even cables !!!) //TODO:tier 12,13 the above + batteries, battery buffers, (maybe cables,12 also works for machines) -- cgit