File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/com/gregtechceu/gtceu/config Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments