From 7d08b90020afe6e2d8926604f945a3c58ea32a28 Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Mon, 8 Jan 2024 00:11:26 +0700 Subject: [PATCH] Double the amount of energy produced by chemical generator from fuels --- .../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 5bb1b860b..cc3358134 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/config/MachinesConfig.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/config/MachinesConfig.kt @@ -70,7 +70,7 @@ object MachinesConfig : AbstractConfig("machines") { private val CHEMICAL_GENERATOR = workerValues( MNames.CHEMICAL_GENERATOR, - energyStorage = Decimal(24_000), + energyStorage = Decimal(32_000), energyThroughput = Decimal(160), energyConsumption = Decimal(40), workTimeMultiplier = null @@ -80,7 +80,7 @@ object MachinesConfig : AbstractConfig("machines") { object ChemicalGenerator { val VALUES by ::CHEMICAL_GENERATOR - val RATIO: Int by builder.comment("This amount of burn ticks result in 1 generation tick").defineInRange("RATIO", 4, 0) + val RATIO: Int by builder.comment("This amount of burn ticks result in 1 generation tick").defineInRange("RATIO", 2, 0) } object MatterBottler {