diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-02 20:40:51 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-02 20:40:51 +0000 |
commit | 30953733770f10449ce32662369546e5ebd34449 (patch) | |
tree | 323ba460f3f6d50e037c843365d7b3979e5ff965 /src/map/status.c | |
parent | 82c514c4d87e1cbf5a486e41bc09e2f31069f354 (diff) | |
download | hercules-30953733770f10449ce32662369546e5ebd34449.tar.gz hercules-30953733770f10449ce32662369546e5ebd34449.tar.bz2 hercules-30953733770f10449ce32662369546e5ebd34449.tar.xz hercules-30953733770f10449ce32662369546e5ebd34449.zip |
- Applied use of RC_BOSS/RC_NONBOSS in the ignore def code.
- Corrected SCB_LUK not updating SCB_BATK as well.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8598 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 70f235b9d..895ef06ac 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -2914,7 +2914,7 @@ void status_calc_bl(struct block_list *bl, unsigned long flag) if(flag&SCB_LUK) {
status->luk = status_calc_luk(bl, sc, b_status->luk);
- flag|=SCB_CRI|SCB_FLEE2;
+ flag|=SCB_BATK|SCB_CRI|SCB_FLEE2;
}
if(flag&SCB_BATK && b_status->batk) {
|