diff options
author | shadow <shadow@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-06-07 03:00:00 +0000 |
---|---|---|
committer | shadow <shadow@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-06-07 03:00:00 +0000 |
commit | 5348c2bddbd3d5b5eef31bd55887f335622c6595 (patch) | |
tree | 58fd3bf295ef22e02dc2248389a2aa524cd4ef93 | |
parent | d8cad426ee66c3da36019d6cdab4e3b20da6ae1d (diff) | |
download | hercules-5348c2bddbd3d5b5eef31bd55887f335622c6595.tar.gz hercules-5348c2bddbd3d5b5eef31bd55887f335622c6595.tar.bz2 hercules-5348c2bddbd3d5b5eef31bd55887f335622c6595.tar.xz hercules-5348c2bddbd3d5b5eef31bd55887f335622c6595.zip |
Fixed PF_DOUBLECASTING casting % bugreport:140
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12765 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | Changelog-Trunk.txt | 1 | ||||
-rw-r--r-- | src/map/status.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index ba0015c56..d3c6994b4 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -4,6 +4,7 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. 2008/06/07 + * Fixed PF_DOUBLECASTING casting % bugreport:140 * Fixed a few properties of NPC_CHANGEUNDEAD bugreport:79 [Brainstorm] 2008/06/01 diff --git a/src/map/status.c b/src/map/status.c index 96c130f53..c25231625 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -5922,7 +5922,7 @@ int status_change_start(struct block_list* bl,enum sc_type type,int rate,int val val2 = 5+val1; //Factor by which displayed damage is increased by break; case SC_DOUBLECAST: - val2 = 40+10*val1; //Trigger rate + val2 = 30+10*val1; //Trigger rate break; case SC_KAIZEL: val2 = 10*val1; //% of life to be revived with |