diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-08-28 16:03:23 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-08-28 16:03:23 +0000 |
commit | 71c735ac06d62215df3dd6f33ec5ae38cd8397a2 (patch) | |
tree | 046c104b76c6929198d968bf8ca641eab5d2233f /src/map/status.c | |
parent | 110493234092936699654cc74accd377b9fc1352 (diff) | |
download | hercules-71c735ac06d62215df3dd6f33ec5ae38cd8397a2.tar.gz hercules-71c735ac06d62215df3dd6f33ec5ae38cd8397a2.tar.bz2 hercules-71c735ac06d62215df3dd6f33ec5ae38cd8397a2.tar.xz hercules-71c735ac06d62215df3dd6f33ec5ae38cd8397a2.zip |
- Fixed exp bonuses applying twice for the job-exp
- Magic damage adjustment per number of hits is now performed before mdef reductions.
- @reloadbattleconf will now also update the ragsrvinfo table on the char-server.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8518 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/status.c b/src/map/status.c index 30f3486fd..32974e07c 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -355,7 +355,7 @@ void initChangeTables(void) { set_sc(KN_ONEHAND, SC_ONEHAND, SI_ONEHAND, SCB_ASPD); set_sc(GS_FLING, SC_FLING, SI_BLANK, SCB_DEF|SCB_DEF2); add_sc(GS_CRACKER, SC_STUN); - set_sc(GS_DISARM, SC_STRIPWEAPON, SI_STRIPWEAPON, SCB_WATK); + add_sc(GS_DISARM, SC_STRIPWEAPON); add_sc(GS_PIERCINGSHOT, SC_BLEEDING); set_sc(GS_MADNESSCANCEL, SC_MADNESSCANCEL, SI_MADNESSCANCEL, SCB_BATK|SCB_ASPD); set_sc(GS_ADJUSTMENT, SC_ADJUSTMENT, SI_ADJUSTMENT, SCB_HIT|SCB_FLEE); @@ -4766,7 +4766,7 @@ int status_change_start(struct block_list *bl,int type,int rate,int val1,int val case SC_ATKPOTION: case SC_MATKPOTION: case SC_JAILED: - case SC_ARMOR_ELEMENT: // Just delete the current one + case SC_ARMOR_ELEMENT: break; case SC_GOSPEL: //Must not override a casting gospel char. |