Set MAX_ENERGY default config value to infinity

This commit is contained in:
DBotThePony 2024-01-04 16:38:09 +07:00
parent 9800eb35ba
commit ebafdbc925
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -212,7 +212,7 @@ object MachinesConfig : AbstractConfig("machines") {
val MAX_ENERGY by builder
.comment("Maximal combined energy consumption percentage")
.defineDecimal("MAX_ENERGY", Decimal.LONG_MAX_VALUE, Decimal.ZERO)
.defineDecimal("MAX_ENERGY", Decimal.POSITIVE_INFINITY, Decimal.ZERO)
init {
builder.pop()