summaryrefslogtreecommitdiff
path: root/src/map/battle.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-09-06 14:22:16 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-09-06 14:22:16 +0000
commit9abaadefaf68e62b0e6ea05a72b7414bab094eb0 (patch)
treeb5521f6028c25bf40f0d224c0e3213277aeec385 /src/map/battle.c
parent1db32664614e71921435c6af105732aa748c2064 (diff)
downloadhercules-9abaadefaf68e62b0e6ea05a72b7414bab094eb0.tar.gz
hercules-9abaadefaf68e62b0e6ea05a72b7414bab094eb0.tar.bz2
hercules-9abaadefaf68e62b0e6ea05a72b7414bab094eb0.tar.xz
hercules-9abaadefaf68e62b0e6ea05a72b7414bab094eb0.zip
- Updated skill_require_db's entry for Abracadabra, it requires yellow 2 gemstones (there's no such hardcoded yellow gemstone requirement anymore)
- Corrected db/const.txt entry bMagicSubRace -> bMagicAddSize - Fixed Aex Aeterna ending on Soul Breaker's first half. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8651 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/battle.c')
-rw-r--r--src/map/battle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/battle.c b/src/map/battle.c
index e446e8376..75d48532e 100644
--- a/src/map/battle.c
+++ b/src/map/battle.c
@@ -331,7 +331,7 @@ int battle_calc_damage(struct block_list *src,struct block_list *bl,int damage,i
if(sc->data[SC_AETERNA].timer!=-1 && skill_num != PF_SOULBURN){
damage<<=1;
//Shouldn't end until Breaker's non-weapon part connects.
- if (skill_num != ASC_BREAKER || flag&BF_WEAPON)
+ if (skill_num != ASC_BREAKER || !(flag&BF_WEAPON))
status_change_end( bl,SC_AETERNA,-1 );
}