summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/map/status.c6
1 files changed, 6 insertions, 0 deletions
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);