diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-11-15 12:00:31 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-11-15 12:00:31 -0300 |
commit | de1a0ca22db4a49345b02b653efa3091cd08a2db (patch) | |
tree | 34c43f6960690381b44f56b51718c1fba5cb5767 /src/map/pc.cpp | |
parent | 1b097707c019a1c9a121998be942a7237a7f3592 (diff) | |
download | tmwa-de1a0ca22db4a49345b02b653efa3091cd08a2db.tar.gz tmwa-de1a0ca22db4a49345b02b653efa3091cd08a2db.tar.bz2 tmwa-de1a0ca22db4a49345b02b653efa3091cd08a2db.tar.xz tmwa-de1a0ca22db4a49345b02b653efa3091cd08a2db.zip |
Revert the General ASPD Nerf. But retain mages capacity to use Conc Potion.
Diffstat (limited to 'src/map/pc.cpp')
-rw-r--r-- | src/map/pc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/pc.cpp b/src/map/pc.cpp index d427ab9..4357e38 100644 --- a/src/map/pc.cpp +++ b/src/map/pc.cpp @@ -1531,9 +1531,9 @@ 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 */ + /* Red Threshold Calculation (TODO) */ if (sd->aspd < 300_ms) { - sd->aspd = 300_ms + ((sd->aspd - 300_ms) * 15 / 20); + sd->aspd = 300_ms + ((sd->aspd - 300_ms) * 20 / 20); } sd->aspd = std::max(sd->aspd, battle_config.max_aspd); |