diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-05 20:30:57 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-05 20:30:57 +0000 |
commit | 7dca4f40ec19769deb05f315d4e35417cea06a19 (patch) | |
tree | 622ea8242e25ad0b09eb68389ab266df90df5a34 /src/map | |
parent | 61d9a63c900b02ac23a77420e71ee653de6edaa0 (diff) | |
download | hercules-7dca4f40ec19769deb05f315d4e35417cea06a19.tar.gz hercules-7dca4f40ec19769deb05f315d4e35417cea06a19.tar.bz2 hercules-7dca4f40ec19769deb05f315d4e35417cea06a19.tar.xz hercules-7dca4f40ec19769deb05f315d4e35417cea06a19.zip |
- Fixed Signum Crucis Def reduction being 10+2*lv% instead of 10+4*lv%
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8643 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/status.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/status.c b/src/map/status.c index 9a95776dd..aa2c591c7 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -4781,7 +4781,7 @@ int status_change_start(struct block_list *bl,int type,int rate,int val1,int val break;
case SC_SIGNUMCRUCIS:
- val2 = 10 + val1*2; //Def reduction
+ val2 = 10 + 4*val1; //Def reduction
clif_emotion(bl,4);
break;
case SC_MAXIMIZEPOWER:
|