From 0c0d047fda4125b727b181468d7c898fc36133af Mon Sep 17 00:00:00 2001 From: ultramage Date: Sat, 9 Aug 2008 19:36:52 +0000 Subject: Really implemented SC_WALKSPEED (instead of copy-pasting old code) (followup to r13039) - the modifier is now a percentual value - a higher modifier now means faster speed, not slower git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13059 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/status.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map/status.c b/src/map/status.c index 35a61a962..1ff562eff 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -3787,7 +3787,7 @@ static unsigned short status_calc_speed(struct block_list *bl, struct status_cha if( sc->data[SC_DEFENDER] ) speed = max(speed, 200); if( sc->data[SC_WALKSPEED] ) // ChangeSpeed - speed = speed * sc->data[SC_WALKSPEED]->val1; + speed = speed * 100 / sc->data[SC_WALKSPEED]->val1; } return (short)cap_value(speed,10,USHRT_MAX); -- cgit v1.2.3-70-g09d2