diff options
author | Haru <haru@dotalux.com> | 2016-07-19 20:26:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-19 20:26:34 +0200 |
commit | 79464d974eda04788f69b1681f4428ad08651d8e (patch) | |
tree | 929412ea46cbd6d026b01884326f5d74735bcb33 /src/map/clif.c | |
parent | 2fcfb3edfd407c2a63b38138ed016c5bff7498f1 (diff) | |
parent | 64c4d5e80118c308893533bb504603ab93b07100 (diff) | |
download | hercules-79464d974eda04788f69b1681f4428ad08651d8e.tar.gz hercules-79464d974eda04788f69b1681f4428ad08651d8e.tar.bz2 hercules-79464d974eda04788f69b1681f4428ad08651d8e.tar.xz hercules-79464d974eda04788f69b1681f4428ad08651d8e.zip |
Merge pull request #1372 from 4144/freemove
Add skill attributes for allow moving while casting this skill
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 2317801bc..68d2bbc48 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -10078,7 +10078,7 @@ void clif_parse_ActionRequest_sub(struct map_session_data *sd, int action_type, if( sd->sc.option&OPTION_COSTUME ) return; - if (!battle_config.sdelay_attack_enable && pc->checkskill(sd, SA_FREECAST) <= 0) { + if (!battle_config.sdelay_attack_enable && pc->checkskill(sd, SA_FREECAST) <= 0 && (skill->get_inf2(sd->ud.skill_id) & (INF2_FREE_CAST_REDUCED | INF2_FREE_CAST_NORMAL)) == 0) { if (DIFF_TICK(tick, sd->ud.canact_tick) < 0) { clif->skill_fail(sd, 1, USESKILL_FAIL_SKILLINTERVAL, 0); return; |