diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-07 20:24:41 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-07 20:24:41 +0000 |
commit | 9212ac09f4c80361ba4e69273bc9e9a265d27f25 (patch) | |
tree | 85389ee018205adc9cca4a5402d3178dbd7fb55f /src/map/status.c | |
parent | 8cf58f2846e8a701fe61a149c5bf532732572780 (diff) | |
download | hercules-9212ac09f4c80361ba4e69273bc9e9a265d27f25.tar.gz hercules-9212ac09f4c80361ba4e69273bc9e9a265d27f25.tar.bz2 hercules-9212ac09f4c80361ba4e69273bc9e9a265d27f25.tar.xz hercules-9212ac09f4c80361ba4e69273bc9e9a265d27f25.zip |
- Changed the default of sg_angel_skill_ratio to 10 based on recent information from Tharis.
- Cleaned up the doridori parse clif function.
- Moved doridori_counter to state.doridori
- Merged some of mpeg's work on NJ skills
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8665 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/status.c b/src/map/status.c index e561b7d91..f4af0c8e7 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -7006,9 +7006,9 @@ static int status_natural_heal(DBKey key,void * data,va_list app) while(sregen->tick.sp >= (unsigned int)battle_config.natural_heal_skill_interval)
{
val = sregen->sp;
- if (sd && sd->doridori_counter) {
+ if (sd && sd->state.doridori) {
val*=2;
- sd->doridori_counter--;
+ sd->state.doridori = 0;
if (
(sd->class_&MAPID_UPPERMASK) == MAPID_STAR_GLADIATOR &&
rand()%10000 < battle_config.sg_angel_skill_ratio
|