summaryrefslogtreecommitdiff
path: root/src/map/pc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/pc.cpp')
-rw-r--r--src/map/pc.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/map/pc.cpp b/src/map/pc.cpp
index 7ceb8f1..49ef5a4 100644
--- a/src/map/pc.cpp
+++ b/src/map/pc.cpp
@@ -1524,6 +1524,11 @@ int pc_calcstatus(dumb_ptr<map_session_data> sd, int first)
if (aspd_rate != 100)
sd->aspd = sd->aspd * aspd_rate / 100;
+ /* Red Threshold Calculation */
+ if (sd->aspd < 300_ms) {
+ sd->aspd = 300_ms + ((sd->aspd - 300_ms) / 2);
+ }
+
sd->aspd = std::max(sd->aspd, battle_config.max_aspd);
sd->amotion = sd->aspd;
sd->dmotion = std::chrono::milliseconds(800 - sd->paramc[ATTR::AGI] * 4);