diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/config/MachinesConfig.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/config/MachinesConfig.kt index e3d633896..7b312c5ae 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/config/MachinesConfig.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/config/MachinesConfig.kt @@ -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()