diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-22 14:57:55 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-22 14:57:55 +0000 |
commit | 782af771684f613e20111bd498ccd1b885978551 (patch) | |
tree | 66f285d5e1847bcaf869b8b13c321c0664be5594 /src/map/status.c | |
parent | 4efdd5fd43c19b846de528610fd9233f52978063 (diff) | |
download | hercules-782af771684f613e20111bd498ccd1b885978551.tar.gz hercules-782af771684f613e20111bd498ccd1b885978551.tar.bz2 hercules-782af771684f613e20111bd498ccd1b885978551.tar.xz hercules-782af771684f613e20111bd498ccd1b885978551.zip |
- Twilight Pharmacy's cast time is no longer reducable by dex.
- All weapon enchant levels now last 3 minutes.
- Corrected Ankle Snare/Spider Web having a 1% chance to trap rather than 100%
- Food boosts are now dispelled on death only.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10050 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/map/status.c b/src/map/status.c index 076b8c573..e2452ad93 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -6035,17 +6035,6 @@ int status_change_clear(struct block_list *bl,int type) case SC_READYTURN: case SC_DODGE: case SC_JAILED: - case SC_STRFOOD: - case SC_AGIFOOD: - case SC_VITFOOD: - case SC_INTFOOD: - case SC_DEXFOOD: - case SC_LUKFOOD: - case SC_HITFOOD: - case SC_FLEEFOOD: - case SC_BATKFOOD: - case SC_WATKFOOD: - case SC_MATKFOOD: continue; } status_change_end(bl, i, -1); @@ -7021,6 +7010,17 @@ int status_change_clear_buffs (struct block_list *bl, int type) case SC_CP_SHIELD: case SC_CP_ARMOR: case SC_CP_HELM: + case SC_STRFOOD: + case SC_AGIFOOD: + case SC_VITFOOD: + case SC_INTFOOD: + case SC_DEXFOOD: + case SC_LUKFOOD: + case SC_HITFOOD: + case SC_FLEEFOOD: + case SC_BATKFOOD: + case SC_WATKFOOD: + case SC_MATKFOOD: continue; //Debuffs that can be removed. |