diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-18 14:50:17 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-18 14:50:17 +0000 |
commit | d2ed6a9218ffe6b2cd1889a12e265809f4573ff4 (patch) | |
tree | 9ee40c50f4368c3539eb979f9b5d3581255df898 /src/map/skill.c | |
parent | 6713158b3247af09d6bf036028d94baf1e715525 (diff) | |
download | hercules-d2ed6a9218ffe6b2cd1889a12e265809f4573ff4.tar.gz hercules-d2ed6a9218ffe6b2cd1889a12e265809f4573ff4.tar.bz2 hercules-d2ed6a9218ffe6b2cd1889a12e265809f4573ff4.tar.xz hercules-d2ed6a9218ffe6b2cd1889a12e265809f4573ff4.zip |
- Fixed a crash when trying to extend TK's infinite combo feature.
- Corrected Poison React to counter regardless of distance, and to use the skill's 50+5*lv% counter chance (instead of 100%).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7730 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/skill.c')
-rw-r--r-- | src/map/skill.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/skill.c b/src/map/skill.c index d1f2a77fb..18715653e 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -1910,7 +1910,7 @@ int skill_attack (int attack_type, struct block_list* src, struct block_list *ds sd->skilllv_old = skilllv; if (pc_famerank(sd->char_id,MAPID_TAEKWON)) { //Extend combo time. - delete_timer(sc->data[SC_COMBO].timer, status_change_timer); + delete_timer(sd->sc.data[SC_COMBO].timer, status_change_timer); sd->sc.data[SC_COMBO].timer = add_timer( tick+sd->sc.data[SC_COMBO].val4, status_change_timer, src->id, SC_COMBO); |