diff options
author | epoque11 <epoque11@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-04-21 15:26:32 +0000 |
---|---|---|
committer | epoque11 <epoque11@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-04-21 15:26:32 +0000 |
commit | b37efb0fe8c81e15c1cee646cc8c7bf344c9ead6 (patch) | |
tree | d8cb52fee8bf4d3410262312d430c7d6ea635264 /src/map/clif.c | |
parent | 7475d4859a56a988fc36372a277c0c007d0123a5 (diff) | |
download | hercules-b37efb0fe8c81e15c1cee646cc8c7bf344c9ead6.tar.gz hercules-b37efb0fe8c81e15c1cee646cc8c7bf344c9ead6.tar.bz2 hercules-b37efb0fe8c81e15c1cee646cc8c7bf344c9ead6.tar.xz hercules-b37efb0fe8c81e15c1cee646cc8c7bf344c9ead6.zip |
- Fixed Spell Fist being unable to cast while casting a bolt skill (bugreport:5597)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15909 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index b969624df..942886b5c 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -10486,7 +10486,7 @@ static void clif_parse_UseSkillToId_homun(struct homun_data *hd, struct map_sess target_id = hd->bl.id; if( hd->ud.skilltimer != INVALID_TIMER ) { - if( skillnum != SA_CASTCANCEL ) return; + if( skillnum != SA_CASTCANCEL && skillnum != SO_SPELLFIST ) return; } else if( DIFF_TICK(tick, hd->ud.canact_tick) < 0 ) return; @@ -10510,7 +10510,7 @@ static void clif_parse_UseSkillToId_mercenary(struct mercenary_data *md, struct target_id = md->bl.id; if( md->ud.skilltimer != INVALID_TIMER ) { - if( skillnum != SA_CASTCANCEL ) return; + if( skillnum != SA_CASTCANCEL && skillnum != SO_SPELLFIST ) return; } else if( DIFF_TICK(tick, md->ud.canact_tick) < 0 ) return; @@ -10598,7 +10598,7 @@ void clif_parse_UseSkillToId(int fd, struct map_session_data *sd) if( sd->ud.skilltimer != INVALID_TIMER ) { - if( skillnum != SA_CASTCANCEL ) + if( skillnum != SA_CASTCANCEL && skillnum != SO_SPELLFIST ) return; } else if( DIFF_TICK(tick, sd->ud.canact_tick) < 0 ) |