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/status.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/status.c')
-rw-r--r-- | src/map/status.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/status.c b/src/map/status.c index c37b0c084..fe3f1c05e 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -4669,6 +4669,7 @@ int status_change_start(struct block_list *bl,int type,int rate,int val1,int val break; case SC_POISONREACT: val2=val1/2 + val1%2; // Number of counters [Celest] + val3=50 + 5*val1; //Chance to counter. [Skotlex] break; case SC_MAGICROD: val2 = val1*20; //SP gained |