diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-29 21:28:35 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-29 21:28:35 +0000 |
commit | 5b5afa7bb6cad66880bbbeee26d0851f25f85d45 (patch) | |
tree | e38849a07c0eef3ea371b67e822dc9149d6fb19b /src/map/status.c | |
parent | 53e1375cb6926b55a1487b61e5616b299e34e2be (diff) | |
download | hercules-5b5afa7bb6cad66880bbbeee26d0851f25f85d45.tar.gz hercules-5b5afa7bb6cad66880bbbeee26d0851f25f85d45.tar.bz2 hercules-5b5afa7bb6cad66880bbbeee26d0851f25f85d45.tar.xz hercules-5b5afa7bb6cad66880bbbeee26d0851f25f85d45.zip |
- Corrected a pretty serious typo in script.c
- Corrected the change that made Coma not be reduced by mdef making Stone, Freeze and Decrease Agi be reduced by luck rather than mdef.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10090 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/map/status.c b/src/map/status.c index 993be24ea..58d6190b7 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -4425,6 +4425,8 @@ int status_get_sc_def(struct block_list *bl, int type) case SC_STONE: case SC_FREEZE: case SC_DECREASEAGI: + sc_def = 300 +100*status->mdef; + break; case SC_CURSE: if (status->luk > status_get_lv(bl)) return 10000; //Special property: inmunity when luk is greater than level |