Skip to content

Commit 1925abd

Browse files
committed
make the fe-to-eu and eu-to-fe ratios max at maxint
1 parent 3309159 commit 1925abd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/gregtechceu/gtceu/config/ConfigHolder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,13 +185,13 @@ public static class EnergyCompatConfig {
185185
@Configurable
186186
@Configurable.Comment({ "Forge Energy to GTEU ratio for converting FE to EU.", "Only affects converters.",
187187
"Default: 4 FE == 1 EU" })
188-
@Configurable.Range(min = 1, max = 16)
188+
@Configurable.Range(min = 1, max = Integer.MAX_VALUE)
189189
public int feToEuRatio = 4;
190190

191191
@Configurable
192192
@Configurable.Comment({ "GTEU to Forge Energy ratio for converting EU to FE.",
193193
"Affects native conversion and Converters.", "Default: 4 FE == 1 EU" })
194-
@Configurable.Range(min = 1, max = 16)
194+
@Configurable.Range(min = 1, max = Integer.MAX_VALUE)
195195
public int euToFeRatio = 4;
196196
}
197197

0 commit comments

Comments
 (0)