Clarify about exopack and android energy max capacity config values
This commit is contained in:
parent
8f450c2058
commit
6f4b028461
@ -52,7 +52,10 @@ object AndroidConfig : AbstractConfig("androids") {
|
|||||||
}
|
}
|
||||||
|
|
||||||
val ANDROID_ENERGY_PER_HUNGER_POINT by builder.defineDecimal("energyPerHunger", Decimal(2000), Decimal.ZERO)
|
val ANDROID_ENERGY_PER_HUNGER_POINT by builder.defineDecimal("energyPerHunger", Decimal(2000), Decimal.ZERO)
|
||||||
val ANDROID_MAX_ENERGY by builder.comment("Internal battery of every android has this much storage").defineDecimal("capacity", Decimal(80_000), Decimal.ZERO)
|
val ANDROID_MAX_ENERGY by builder
|
||||||
|
.comment("Internal battery of every android has this much storage")
|
||||||
|
.comment("Keep in mind that already existing players won't get their value changed since it is", "stored inside their savedata")
|
||||||
|
.defineDecimal("capacity", Decimal(80_000), Decimal.ZERO)
|
||||||
val NIGHT_VISION_POWER_DRAW by builder.defineDecimal("nightVisionPowerDraw", Decimal(8), Decimal.ZERO)
|
val NIGHT_VISION_POWER_DRAW by builder.defineDecimal("nightVisionPowerDraw", Decimal(8), Decimal.ZERO)
|
||||||
|
|
||||||
val FALL_DAMAGE_REDUCTION_PER_LEVEL_P: Double by builder
|
val FALL_DAMAGE_REDUCTION_PER_LEVEL_P: Double by builder
|
||||||
|
@ -6,6 +6,7 @@ import ru.dbotthepony.mc.otm.core.math.defineDecimal
|
|||||||
object ExopackConfig : AbstractConfig("exopack") {
|
object ExopackConfig : AbstractConfig("exopack") {
|
||||||
val ENERGY_CAPACITY by builder
|
val ENERGY_CAPACITY by builder
|
||||||
.comment("Internal battery capacity of Exopack")
|
.comment("Internal battery capacity of Exopack")
|
||||||
|
.comment("Keep in mind that already existing players won't get their value changed since it is", "stored inside their savedata")
|
||||||
.defineDecimal("ENERGY_CAPACITY", Decimal(200_000), Decimal.ZERO)
|
.defineDecimal("ENERGY_CAPACITY", Decimal(200_000), Decimal.ZERO)
|
||||||
|
|
||||||
val FURNACE_POWER_CONSUMPTION by builder
|
val FURNACE_POWER_CONSUMPTION by builder
|
||||||
|
Loading…
Reference in New Issue
Block a user