From 6cf218a18488ceb421ee8d328069b7f049762891 Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Sat, 22 Mar 2025 15:06:56 +0700 Subject: [PATCH] Considerably buff matter bottler --- .../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 7b312c5ae..cd24dee29 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/config/MachinesConfig.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/config/MachinesConfig.kt @@ -60,7 +60,7 @@ object MachinesConfig : AbstractConfig("machines") { private val MATTER_BOTTLER = workerValues( MNames.MATTER_BOTTLER, energyStorage = Decimal(40_000), - energyConsumption = Decimal(10), + energyConsumption = Decimal(40), energyThroughput = Decimal(200), matterCapacity = Decimal(400), workTimeMultiplier = null @@ -85,7 +85,7 @@ object MachinesConfig : AbstractConfig("machines") { object MatterBottler { val VALUES by ::MATTER_BOTTLER - val RATE by builder.comment("Matter transferred per tick").defineDecimal("RATE", Decimal("2.0"), Decimal.ONE_TENTH) + val RATE by builder.comment("Matter transferred per tick").defineDecimal("RATE", Decimal("10.0"), Decimal.ONE_TENTH) } object MatterRecycler {