From 3e5f47c9a304ee405fe558b294c6d46776d3c74c Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Sat, 29 Mar 2025 17:12:49 +0700 Subject: [PATCH] Fix matter reconstructor being a downgrade regarding energy values compared to replicator --- .../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 115f0fb4f..3eb517494 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/config/MachinesConfig.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/config/MachinesConfig.kt @@ -110,8 +110,8 @@ object MachinesConfig : AbstractConfig("machines") { private val MATTER_RECONSTRUCTOR = workerValues( MNames.MATTER_RECONSTRUCTOR, - energyStorage = Decimal(100_000), - energyThroughput = Decimal(1000), + energyStorage = Decimal(200_000), + energyThroughput = Decimal(4_000), energyConsumption = Decimal(400), matterCapacity = Decimal(200), workTimeMultiplier = null,