From 624dce62fa662ae4ea1c2cc75b60f6ae5385ffe7 Mon Sep 17 00:00:00 2001
From: Jesusaves <cpntb1@ymail.com>
Date: Tue, 15 Nov 2022 11:33:35 -0300
Subject: [TMW2] Improve the ASPD nerf formula.

---
 src/map/status.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'src')

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)
-- 
cgit v1.2.3-70-g09d2