From 3129db667d52c6efa90e0f4349264a376a8a019e Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Mon, 17 Feb 2025 19:09:57 +0700 Subject: [PATCH] Reduce passive energy loss in flywheel battery --- .../kotlin/ru/dbotthepony/mc/otm/config/MachinesConfig.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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()