decrease speed base

This commit is contained in:
tsunyoku
2024-07-13 17:10:06 +01:00
parent a31527030e
commit 425c39a9b0
+1 -1
View File
@@ -77,7 +77,7 @@ impl SkillKind {
speed_bonus += exp_base * exp_base;
}
(0.95 + speed_bonus * (dist / SINGLE_SPACING_TRESHOLD).powf(3.5))
(0.6 + speed_bonus * (dist / SINGLE_SPACING_TRESHOLD).powf(3.5))
/ current.strain_time
}
}