diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-11-02 20:29:22 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-11-02 20:29:22 +0000 |
commit | d2c32eefc77ad0c9e42f72621c1d1d1b4d77c091 (patch) | |
tree | 69f71a486a22125f41e2b38b44ac45bfb0a87015 /src/map | |
parent | 267bb1f528dba1fcb946fb021b5a3f1c09989df4 (diff) | |
download | hercules-d2c32eefc77ad0c9e42f72621c1d1d1b4d77c091.tar.gz hercules-d2c32eefc77ad0c9e42f72621c1d1d1b4d77c091.tar.bz2 hercules-d2c32eefc77ad0c9e42f72621c1d1d1b4d77c091.tar.xz hercules-d2c32eefc77ad0c9e42f72621c1d1d1b4d77c091.zip |
Corrected Whirlwind/Violent Gale to give a numeric flee bonus instead of percentual (bugreport:329)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11644 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map')
-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 4ae211098..e59bdc88a 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -3528,7 +3528,7 @@ static signed short status_calc_flee(struct block_list *bl, struct status_change if(sc->data[SC_INCFLEERATE].timer!=-1) flee += flee * sc->data[SC_INCFLEERATE].val1/100; if(sc->data[SC_VIOLENTGALE].timer!=-1) - flee += flee * sc->data[SC_VIOLENTGALE].val2/100; + flee += sc->data[SC_VIOLENTGALE].val2; if(sc->data[SC_MOON_COMFORT].timer!=-1) //SG skill [Komurka] flee += sc->data[SC_MOON_COMFORT].val2; if(sc->data[SC_CLOSECONFINE].timer!=-1) |