From 8f450c2058f7af28951aa8b78fc203b096295d0c Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Sun, 9 Jul 2023 00:11:23 +0700 Subject: [PATCH] Actually, internal energy storage of exopack can be made upgradeable instead of giving it huge capacity by default --- 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 34cb073f7..c62aaa42b 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(40_000_000), Decimal.ZERO) + .defineDecimal("ENERGY_CAPACITY", Decimal(200_000), Decimal.ZERO) val FURNACE_POWER_CONSUMPTION by builder .comment("Power consumed per tick by built in furnace")