Reduce passive energy loss in flywheel battery

This commit is contained in:
DBotThePony 2025-02-17 19:09:57 +07:00
parent 97e22459c5
commit 3129db667d
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -320,13 +320,13 @@ object MachinesConfig : AbstractConfig("machines") {
val PASSIVE_LOSS: Decimal by builder
.comment("Amount of energy lost per tick in % of energy stored")
.defineDecimal("PASSIVE_LOSS", Decimal("0.000001"), Decimal.ZERO)
.defineDecimal("PASSIVE_LOSS", Decimal("0.0000004"), Decimal.ZERO)
val ACTIVE_LOSS: Decimal by builder
.comment("Amount of energy lost per tick in % of energy stored if Flywheel configuration is invalid")
.comment("Keep in mind that all stored energy is instantly lost when controller is broken by any means")
.comment("unless using mod which fully preserve blockentity metadata such as Mekanism cardboard box or Carry On")
.defineDecimal("ACTIVE_LOSS", Decimal("0.0004"), Decimal.ZERO)
.defineDecimal("ACTIVE_LOSS", Decimal("0.00004"), Decimal.ZERO)
init {
builder.pop()