diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-02-15 18:22:56 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-02-15 18:22:56 +0000 |
commit | 60027d5509cddf09a136261f8a56724b65e2f2b8 (patch) | |
tree | 0a77f927c3845855979adb9287d59d37db44bf27 /src/map/skill.c | |
parent | 3aa7336ae0e7fdd1892f43fb681853483a2e907a (diff) | |
download | hercules-60027d5509cddf09a136261f8a56724b65e2f2b8.tar.gz hercules-60027d5509cddf09a136261f8a56724b65e2f2b8.tar.bz2 hercules-60027d5509cddf09a136261f8a56724b65e2f2b8.tar.xz hercules-60027d5509cddf09a136261f8a56724b65e2f2b8.zip |
- The default packet version is now 8. Clients from November2006 and before can no longer get past the char-server unless you change it back to 7.
- Fixed Storm Gust counter freezing on fourth hit instead of third.
- Fixed @homstats not taking into consideration that the stat growth decimals get discarded on level up (so the real minimum/maximum displayed was off).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9868 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 de00bd7f7..2a55a5280 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -1113,7 +1113,8 @@ int skill_additional_effect (struct block_list* src, struct block_list *bl, int break; case WZ_STORMGUST: - if(tsc->data[SC_FREEZE].val3 >= 3) //Tharis pointed out that this is normal freeze chance with a base of 300% + //Use two since the counter is increased AFTER the attack. + if(tsc->data[SC_FREEZE].val3 >= 2) //Tharis pointed out that this is normal freeze chance with a base of 300% sc_start(bl,SC_FREEZE,300,skilllv,skill_get_time2(skillid,skilllv)); break; |