From cec3411130993e247ee507fdae6d1c6c6201ec4e Mon Sep 17 00:00:00 2001 From: David <122132914+EnderBoy9217@users.noreply.github.com> Date: Sun, 29 Dec 2024 23:17:11 -0500 Subject: [PATCH] Syncronize order of air then water speeds --- .../main/kotlin/org/valkyrienskies/eureka/EurekaConfig.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/src/main/kotlin/org/valkyrienskies/eureka/EurekaConfig.kt b/common/src/main/kotlin/org/valkyrienskies/eureka/EurekaConfig.kt index df511d7..de6489d 100644 --- a/common/src/main/kotlin/org/valkyrienskies/eureka/EurekaConfig.kt +++ b/common/src/main/kotlin/org/valkyrienskies/eureka/EurekaConfig.kt @@ -55,12 +55,12 @@ object EurekaConfig { @JsonSchema(description = "The final linear boost will be raised to the power of 2, and the result of the delta is multiple by this value") val engineBoostExponentialPower = 0.000001 - @JsonSchema(description = "Max speed of a ship on water or lava without boosting") - val maxCasualWaterSpeed = 20.0 - @JsonSchema(description = "Max speed of a flying ship without boosting") val maxCasualAirSpeed = 15.0 + @JsonSchema(description = "Max speed of a ship on water or lava without boosting") + val maxCasualWaterSpeed = 20.0 + @JsonSchema(description = "The speed at which the ship stabilizes") var stabilizationSpeed = 10.0