SU_HISS Perfect dodge fix (#4991)

* Fixes #4990.
* Adds missing x10 rate for perfect dodge calculations.
Thanks to @Balferian and @LordWhiplash!
This commit is contained in:
LordWhiplash 2020-05-21 10:02:23 -03:00 committed by GitHub
parent 0fba10c324
commit 43caf7cc0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6997,7 +6997,7 @@ static signed short status_calc_flee2(struct block_list *bl, struct status_chang
if(sc->data[SC__UNLUCKY])
flee2 -= flee2 * sc->data[SC__UNLUCKY]->val2 / 100;
if (sc->data[SC_HISS])
flee2 += sc->data[SC_HISS]->val2;
flee2 += sc->data[SC_HISS]->val2*10;
if (sc->data[SC_DORAM_FLEE2])
flee2 += sc->data[SC_DORAM_FLEE2]->val1;