diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-11-15 11:33:35 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-11-15 11:33:35 -0300 |
commit | 624dce62fa662ae4ea1c2cc75b60f6ae5385ffe7 (patch) | |
tree | 9dde523c22d3af7e9e4692bb712636e4ab68abef /src | |
parent | 36ac72a8178bab7f1802d67d13c4d91ebec3e88b (diff) | |
download | hercules-624dce62fa662ae4ea1c2cc75b60f6ae5385ffe7.tar.gz hercules-624dce62fa662ae4ea1c2cc75b60f6ae5385ffe7.tar.bz2 hercules-624dce62fa662ae4ea1c2cc75b60f6ae5385ffe7.tar.xz hercules-624dce62fa662ae4ea1c2cc75b60f6ae5385ffe7.zip |
[TMW2] Improve the ASPD nerf formula.
Diffstat (limited to 'src')
-rw-r--r-- | src/map/status.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/status.c b/src/map/status.c index 4b4676d4d..cfd25fc82 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -6132,7 +6132,7 @@ static short status_calc_fix_aspd(struct block_list *bl, struct status_change *s // TMW2 Nerfing if (aspd < 300) - aspd=cap_value(aspd+(aspd / 2), 0, 300); + aspd=cap_value((300 + ((aspd - 300) * 11 / 20)), 0, 300); // Status Conditions if (!sc || !sc->count) |