- Fixed Signum Crucis Def reduction being 10+2*lv% instead of 10+4*lv%
git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@8643 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
parent
8a01f7d2ca
commit
af829182c1
@ -4,6 +4,8 @@ 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.
|
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
|
||||||
|
|
||||||
2006/09/05
|
2006/09/05
|
||||||
|
* Fixed Signum Crucis Def reduction being 10+2*lv% instead of 10+4*lv%
|
||||||
|
[Skotlex]
|
||||||
* Applied the Ultra Mage's suggestion to have the map server strip trailing
|
* Applied the Ultra Mage's suggestion to have the map server strip trailing
|
||||||
spaces/comments from the config files. It will also now print out when an
|
spaces/comments from the config files. It will also now print out when an
|
||||||
unknown config setting is found. [Skotlex]
|
unknown config setting is found. [Skotlex]
|
||||||
|
@ -4781,7 +4781,7 @@ int status_change_start(struct block_list *bl,int type,int rate,int val1,int val
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case SC_SIGNUMCRUCIS:
|
case SC_SIGNUMCRUCIS:
|
||||||
val2 = 10 + val1*2; //Def reduction
|
val2 = 10 + 4*val1; //Def reduction
|
||||||
clif_emotion(bl,4);
|
clif_emotion(bl,4);
|
||||||
break;
|
break;
|
||||||
case SC_MAXIMIZEPOWER:
|
case SC_MAXIMIZEPOWER:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user