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/skill.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/skill.c')
-rw-r--r-- | src/map/skill.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/map/skill.c b/src/map/skill.c index 531cb9857..87df0e1ac 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -1848,6 +1848,7 @@ int skill_attack (int attack_type, struct block_list* src, struct block_list *ds clif_specialeffect(bl, 438, AREA); if (--sc->data[SC_KAITE].val2 <= 0) status_change_end(bl, SC_KAITE, -1); + clif_skill_nodamage(bl,src,skillid,skilllv,1); bl = src; //Just make the skill attack yourself @.@ sc = status_get_sc(bl); tsd = (bl->type == BL_PC)?(TBL_PC*)bl:NULL; @@ -5128,7 +5129,7 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, in } break; - // Slim Pitcher (normally Condensed Potion doesn't give SP (Heals party members)) + // Slim Pitcher case CR_SLIMPITCHER: if (potion_hp || potion_sp) { int hp = potion_hp, sp = potion_sp; @@ -5466,7 +5467,7 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, in pc_delspiritball(sd,1,0); } break; - + case GS_CRACKER: if (!dstsd) // according to latest patch, should not work on players [Reddozen] { |