diff options
author | malufett <malufett.eat.my.binaries@gmail.com> | 2013-07-21 21:06:43 +0800 |
---|---|---|
committer | malufett <malufett.eat.my.binaries@gmail.com> | 2013-07-21 21:06:43 +0800 |
commit | 8b00d9bd079514a1c307ef5d2e6614055e8f874e (patch) | |
tree | ae70c79bed6700f3bbf42fd639d690a87fe4c7df /src/map/battle.c | |
parent | 94d75f867a6dae10f05a8c2399a301c66b53bce3 (diff) | |
download | hercules-8b00d9bd079514a1c307ef5d2e6614055e8f874e.tar.gz hercules-8b00d9bd079514a1c307ef5d2e6614055e8f874e.tar.bz2 hercules-8b00d9bd079514a1c307ef5d2e6614055e8f874e.tar.xz hercules-8b00d9bd079514a1c307ef5d2e6614055e8f874e.zip |
Fixed Bug#7558
-Where 'bLongAtkDef' is not working properly with physical attack.
Fixed Bug#7530
-Where Masquerades affect boss monsters.
Signed-off-by: malufett <malufett.eat.my.binaries@gmail.com>
Diffstat (limited to 'src/map/battle.c')
-rw-r--r-- | src/map/battle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/battle.c b/src/map/battle.c index 2016efa3b..7563df975 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -1133,7 +1133,7 @@ int battle_calc_cardfix(int attack_type, struct block_list *src, struct block_li if( wflag&BF_SHORT ) cardfix = cardfix * (100 - tsd->bonus.near_attack_def_rate) / 100; else // BF_LONG (there's no other choice) - cardfix = cardfix * (100 - tsd->bonus.near_attack_def_rate) / 100; + cardfix = cardfix * (100 - tsd->bonus.long_attack_def_rate) / 100; if( tsd->sc.data[SC_PROTECT_DEF] ) cardfix = cardfix * (100 - tsd->sc.data[SC_PROTECT_DEF]->val1) / 100; |