summaryrefslogtreecommitdiff
path: root/src/map/skill.c
diff options
context:
space:
mode:
authorrud0lp20 <rud0lp20@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-05-20 11:27:50 +0000
committerrud0lp20 <rud0lp20@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-05-20 11:27:50 +0000
commit27ef6a1440b8803a6204e5bc6b627f403be5717e (patch)
tree896c542f847959a15e4f40a65d4ecada0e71b8bd /src/map/skill.c
parent408f4d9391dc280c1ac1b0fdfaa0be33f6d27d25 (diff)
downloadhercules-27ef6a1440b8803a6204e5bc6b627f403be5717e.tar.gz
hercules-27ef6a1440b8803a6204e5bc6b627f403be5717e.tar.bz2
hercules-27ef6a1440b8803a6204e5bc6b627f403be5717e.tar.xz
hercules-27ef6a1440b8803a6204e5bc6b627f403be5717e.zip
Fixed bugreport:5619 MO_EXTREMITYFIST should now consume all spirit sphere.
Fixed bugreport:5632 SR_FALLENEMPIRE should now chain with SR_GATEOFHELL and SR_TIGERCANNON and add bonus damage. Update SR_GATEOFHELL damage formula where sp has now contribution with the damage. Fixed wrong displayed status mdef. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16131 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/skill.c')
-rw-r--r--src/map/skill.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map/skill.c b/src/map/skill.c
index f4305d5f8..eaa2b3331 100644
--- a/src/map/skill.c
+++ b/src/map/skill.c
@@ -12844,7 +12844,8 @@ struct skill_condition skill_get_requirement(struct map_session_data* sd, short
req.spiritball = sd->spiritball?sd->spiritball:1;
break;
}
- }
+ }else if( sc->data[SC_RAISINGDRAGON] && sd->spiritball > 5)
+ req.spiritball = sd->spiritball; // must consume all regardless of the amount required
}
break;
case SR_RAMPAGEBLASTER: