diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-08-28 16:03:23 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-08-28 16:03:23 +0000 |
commit | 71c735ac06d62215df3dd6f33ec5ae38cd8397a2 (patch) | |
tree | 046c104b76c6929198d968bf8ca641eab5d2233f /src/map/skill.c | |
parent | 110493234092936699654cc74accd377b9fc1352 (diff) | |
download | hercules-71c735ac06d62215df3dd6f33ec5ae38cd8397a2.tar.gz hercules-71c735ac06d62215df3dd6f33ec5ae38cd8397a2.tar.bz2 hercules-71c735ac06d62215df3dd6f33ec5ae38cd8397a2.tar.xz hercules-71c735ac06d62215df3dd6f33ec5ae38cd8397a2.zip |
- Fixed exp bonuses applying twice for the job-exp
- Magic damage adjustment per number of hits is now performed before mdef reductions.
- @reloadbattleconf will now also update the ragsrvinfo table on the char-server.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8518 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/skill.c')
-rw-r--r-- | src/map/skill.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/skill.c b/src/map/skill.c index b8f869c7c..d99971244 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -5605,7 +5605,7 @@ int skill_castend_id (int tid, unsigned int tick, int id, int data) nullpo_retr(0, ud); BL_CAST( BL_PC, src, sd); - BL_CAST( BL_HOM, src, hd); //[orn] + BL_CAST( BL_HOM, src, hd); //[orn] BL_CAST( BL_MOB, src, md); if( src->prev == NULL ) { @@ -5819,7 +5819,7 @@ int skill_castend_pos (int tid, unsigned int tick, int id, int data) nullpo_retr(0, ud); BL_CAST( BL_PC , src, sd); - BL_CAST( BL_HOM , src, hd); //[orn] + BL_CAST( BL_HOM, src, hd); //[orn] BL_CAST( BL_MOB, src, md); if( src->prev == NULL ) { @@ -10069,7 +10069,7 @@ int skill_unit_timer_sub (struct block_list *bl, va_list ap) if (--group->val1 <= 0) { //All tiles were processed, disable skill. group->target_flag=BCT_NOONE; - group->bl_flag= 0; + group->bl_flag= BL_NUL; } } |