From 2e4cb8b3f9a9c14216e76a3f367df0de725faf66 Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Sat, 8 Jul 2023 23:25:26 +0700 Subject: [PATCH] Massively buff exopack energy storage --- src/main/kotlin/ru/dbotthepony/mc/otm/config/ExopackConfig.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/config/ExopackConfig.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/config/ExopackConfig.kt index ab652e63d..34cb073f7 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/config/ExopackConfig.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/config/ExopackConfig.kt @@ -6,7 +6,7 @@ import ru.dbotthepony.mc.otm.core.math.defineDecimal object ExopackConfig : AbstractConfig("exopack") { val ENERGY_CAPACITY by builder .comment("Internal battery capacity of Exopack") - .defineDecimal("ENERGY_CAPACITY", Decimal(400_000), Decimal.ZERO) + .defineDecimal("ENERGY_CAPACITY", Decimal(40_000_000), Decimal.ZERO) val FURNACE_POWER_CONSUMPTION by builder .comment("Power consumed per tick by built in furnace")