diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-02-22 21:33:41 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-02-22 21:33:41 +0000 |
commit | be36c563041ad7131b1b5dc86771d167b355a619 (patch) | |
tree | e8d3ca060d8358132842b577b32238b0bccd2e39 /src/map/status.c | |
parent | b5636c1a16c969ae068485bb7165443f8a8a7e7e (diff) | |
download | hercules-be36c563041ad7131b1b5dc86771d167b355a619.tar.gz hercules-be36c563041ad7131b1b5dc86771d167b355a619.tar.bz2 hercules-be36c563041ad7131b1b5dc86771d167b355a619.tar.xz hercules-be36c563041ad7131b1b5dc86771d167b355a619.zip |
- Windwalk's bonus is now +5 miserable flee.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5375 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.c')
-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 845f0a84d..a6ba3bf28 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -1965,7 +1965,7 @@ int status_calc_flee(struct block_list *bl, int flee) if(sc->data[SC_WHISTLE].timer!=-1)
flee += sc->data[SC_WHISTLE].val2;
if(sc->data[SC_WINDWALK].timer!=-1)
- flee += flee * sc->data[SC_WINDWALK].val2/100;
+ flee += sc->data[SC_WINDWALK].val2;
if(sc->data[SC_INCFLEERATE].timer!=-1)
flee += flee * sc->data[SC_INCFLEERATE].val1/100;
if(sc->data[SC_VIOLENTGALE].timer!=-1 && status_get_elem_type(bl)==4)
|