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 {