diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-06 16:16:25 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-06 16:16:25 +0000 |
commit | 91370409aede963a205b1f9987a3594d6d4e3928 (patch) | |
tree | b00df8498d34daa92298805b2f4dadf31c5d9eda /src/map/battle.c | |
parent | db118dccc74b5c9c0694cdfa863b33ed6984c0fb (diff) | |
download | hercules-91370409aede963a205b1f9987a3594d6d4e3928.tar.gz hercules-91370409aede963a205b1f9987a3594d6d4e3928.tar.bz2 hercules-91370409aede963a205b1f9987a3594d6d4e3928.tar.xz hercules-91370409aede963a205b1f9987a3594d6d4e3928.zip |
- Corrected the define for NK no cardfix (def).
- Updated skills that shouldn't ignore the target's cards: Smoking, Fling, Zenynage
- Fixed the char sql server not escaping the server name before inserting it on the ragsrvinfo table.
- Corrected @lvup not doing the party even share check.
- Corrected breaker's misc part not ignoring element.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9969 54d463be-8e91-2dee-dedb-b68131a5f0ec
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 8a0bd5c7d..756e433ce 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -2554,7 +2554,7 @@ struct Damage battle_calc_misc_attack( break ; case ASC_BREAKER: md.damage = 500+rand()%500 + 5*skill_lv * sstatus->int_; - nk|=NK_IGNORE_FLEE; //Only Breaker's Misc part always hits. + nk|=NK_IGNORE_FLEE|NK_NO_ELEFIX; //These two are not properties of the weapon based part. break; } |