We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3309159 commit 1925abdCopy full SHA for 1925abd
1 file changed
src/main/java/com/gregtechceu/gtceu/config/ConfigHolder.java
@@ -185,13 +185,13 @@ public static class EnergyCompatConfig {
185
@Configurable
186
@Configurable.Comment({ "Forge Energy to GTEU ratio for converting FE to EU.", "Only affects converters.",
187
"Default: 4 FE == 1 EU" })
188
- @Configurable.Range(min = 1, max = 16)
+ @Configurable.Range(min = 1, max = Integer.MAX_VALUE)
189
public int feToEuRatio = 4;
190
191
192
@Configurable.Comment({ "GTEU to Forge Energy ratio for converting EU to FE.",
193
"Affects native conversion and Converters.", "Default: 4 FE == 1 EU" })
194
195
public int euToFeRatio = 4;
196
}
197
0 commit comments