From d997e605b78aa3ea6e8ca685296bcce85de5fad1 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Fri, 31 Jul 2020 23:20:19 -0300 Subject: [TMW2] ASPD FIX --- src/map/status.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/map') diff --git a/src/map/status.c b/src/map/status.c index 63e71c9dc..2b7bd1333 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -6124,6 +6124,12 @@ static short status_calc_aspd(struct block_list *bl, struct status_change *sc, s static short status_calc_fix_aspd(struct block_list *bl, struct status_change *sc, int aspd) { nullpo_ret(bl); + + // TMW2 Nerfing + if (aspd < 300) + aspd=cap_value(aspd+(aspd / 2), 0, 300); + + // Status Conditions if (!sc || !sc->count) return cap_value(aspd, 0, 2000); -- cgit v1.2.3-70-g09d2