summaryrefslogtreecommitdiff
path: root/src/map/skill.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-06-19 23:57:09 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-06-19 23:57:09 +0000
commit74365577c739c17540c90b8e9a08537cca7e4e61 (patch)
tree1d474afed3c78b19b6899e4bd684d7433efcaa55 /src/map/skill.c
parent3e6adadeb826e0b05add91e4dc8565aaa71f9eb2 (diff)
downloadhercules-74365577c739c17540c90b8e9a08537cca7e4e61.tar.gz
hercules-74365577c739c17540c90b8e9a08537cca7e4e61.tar.bz2
hercules-74365577c739c17540c90b8e9a08537cca7e4e61.tar.xz
hercules-74365577c739c17540c90b8e9a08537cca7e4e61.zip
- Combo-used Skills with State "move_enable" will now override the "can't move delay". Fixes Break-Fall -> Jump-Kick.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7260 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/skill.c')
-rw-r--r--src/map/skill.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/map/skill.c b/src/map/skill.c
index 894dbf2fb..c316c6b74 100644
--- a/src/map/skill.c
+++ b/src/map/skill.c
@@ -8020,8 +8020,13 @@ int skill_check_condition (struct map_session_data *sd, int skill, int lv, int t
}
break;
case ST_MOVE_ENABLE:
- //Check only on begin casting. [Skotlex]
- if(!type && !unit_can_move(&sd->bl)) {
+ if(type)//Check only on begin casting. [Skotlex]
+ break;
+
+ if (sc && sc->data[SC_COMBO].timer != -1 && sc->data[SC_COMBO].val1 == skill)
+ sd->ud.canmove_tick = gettick(); //When using a combo, cancel the can't move delay to enable the skill. [Skotlex]
+
+ if (!unit_can_move(&sd->bl)) {
clif_skill_fail(sd,skill,0,0);
return 0;
}