summaryrefslogtreecommitdiff
path: root/src/map/battle.c
diff options
context:
space:
mode:
authorshadow <shadow@54d463be-8e91-2dee-dedb-b68131a5f0ec>2009-03-01 22:46:03 +0000
committershadow <shadow@54d463be-8e91-2dee-dedb-b68131a5f0ec>2009-03-01 22:46:03 +0000
commitc18d4eaa0335d8c873a87debb8cbd0a60bfcb436 (patch)
tree55547cc3965c75daccc79637cd47f13f197d3f55 /src/map/battle.c
parenteab80afc285eb803d4f48bd2eab9e68b607ad281 (diff)
downloadhercules-c18d4eaa0335d8c873a87debb8cbd0a60bfcb436.tar.gz
hercules-c18d4eaa0335d8c873a87debb8cbd0a60bfcb436.tar.bz2
hercules-c18d4eaa0335d8c873a87debb8cbd0a60bfcb436.tar.xz
hercules-c18d4eaa0335d8c873a87debb8cbd0a60bfcb436.zip
Fixes from 2008/10/13 bugreport:2077 (Only commiting because nobody did until now and those bugs would get lost)
* Fixed monster's Spiral Pierce, now it is always blocked by Pneuma. * Fixed Monk Absorb Spirits mana recovery per spirit absorbed, 7, not 10. * Fixed Monk spirit balls not being removed on death (like happens with gunslingers). * Fixed Swordman Auto-Berserk sp cost, 1, not 5. Should be 0, but eA wont allow the skill to work. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13555 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/battle.c')
-rw-r--r--src/map/battle.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/map/battle.c b/src/map/battle.c
index b1bc7287d..b0ad2f075 100644
--- a/src/map/battle.c
+++ b/src/map/battle.c
@@ -329,6 +329,9 @@ int battle_calc_damage(struct block_list *src,struct block_list *bl,int damage,i
if( sc->data[SC_PNEUMA] && (flag&(BF_MAGIC|BF_LONG)) == BF_LONG )
return 0;
+
+ if( sc->data[SC_PNEUMA] && src->type == BL_MOB && skill_num == LK_SPIRALPIERCE)
+ return 0; //Mob's Spiral Pierce is always blocked by pneuma [Brain]
if( (sce=sc->data[SC_AUTOGUARD]) && flag&BF_WEAPON && !(skill_get_nk(skill_num)&NK_NO_CARDFIX_ATK) && rand()%100 < sce->val2 )
{