diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-05-17 14:23:00 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-05-17 14:23:00 +0000 |
commit | 300c03ec02aadbe88ecfe51b4c021a49b98e3533 (patch) | |
tree | be004fac786ca0c47f4160956442cf8d7698a4a3 /src | |
parent | 2f8233776962eea2f00dc726ecd78f2777c65ebb (diff) | |
download | hercules-300c03ec02aadbe88ecfe51b4c021a49b98e3533.tar.gz hercules-300c03ec02aadbe88ecfe51b4c021a49b98e3533.tar.bz2 hercules-300c03ec02aadbe88ecfe51b4c021a49b98e3533.tar.xz hercules-300c03ec02aadbe88ecfe51b4c021a49b98e3533.zip |
- Added check to clear previous skill when combo time ends. Should fix TK Rankers being unable to initiate a combo with the same kick their previous combo was finished with.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6630 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src')
-rw-r--r-- | src/map/status.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/map/status.c b/src/map/status.c index 0c4516bc7..b113cfa21 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -5254,7 +5254,10 @@ int status_change_end( struct block_list* bl , int type,int tid ) sc->data[type].val4=-1;
}
break;
-
+ case SC_COMBO: //Clear last used skill when it is part of a combo.
+ if (sd && sd->skillid_old == sc->data[type].val1)
+ sd->skillid_old = sd->skilllv_old = 0;
+ break;
//gs_something2 [Vicious]
case SC_MADNESSCANCEL:
case SC_ADJUSTMENT:
|