diff options
author | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-02-11 19:43:24 +0000 |
---|---|---|
committer | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-02-11 19:43:24 +0000 |
commit | 3629f7531140f7819e9327b80c8e70dea0905047 (patch) | |
tree | 6cc04163650265e5cc573b033c6b4060c5dd16ef /src/map/skill.c | |
parent | c6a57edb3cb1b89ba16fee291fb9344260826570 (diff) | |
download | hercules-3629f7531140f7819e9327b80c8e70dea0905047.tar.gz hercules-3629f7531140f7819e9327b80c8e70dea0905047.tar.bz2 hercules-3629f7531140f7819e9327b80c8e70dea0905047.tar.xz hercules-3629f7531140f7819e9327b80c8e70dea0905047.zip |
Fixed bug with abracadabra self skills not working, bugreport:5310
Also fixed magnificat's non-mado condition
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15566 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/skill.c')
-rw-r--r-- | src/map/skill.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map/skill.c b/src/map/skill.c index 97b4a50fb..2fef37baf 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -446,7 +446,8 @@ int skillnotok (int skillid, struct map_session_data *sd) // This code will compare the player's attack motion value which is influenced by ASPD before // allowing a skill to be cast. This is to prevent no-delay ACT files from spamming skills such as // AC_DOUBLE which do not have a skill delay and are not regarded in terms of attack motion. - if( sd->canskill_tick && DIFF_TICK(gettick(), sd->canskill_tick) < (sd->battle_status.amotion * (100 + battle_config.skill_amotion_leniency) / 100) ) + if( sd->skillitem != skillid && sd->canskill_tick && + DIFF_TICK(gettick(), sd->canskill_tick) < (sd->battle_status.amotion * (100 + battle_config.skill_amotion_leniency) / 100) ) {// attempted to cast a skill before the attack motion has finished return 1; } |