diff options
author | rud0lp20 <rud0lp20@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-06-15 14:57:54 +0000 |
---|---|---|
committer | rud0lp20 <rud0lp20@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-06-15 14:57:54 +0000 |
commit | 26c532c222acf2f68dfa41c3ce5fa1acd3898429 (patch) | |
tree | 02d0b6611551d9b1bd1d89d41ab8dc532cc47eff /src/map/status.c | |
parent | ba2220a201d44b090e96bbcdcd60334a7368d7b1 (diff) | |
download | hercules-26c532c222acf2f68dfa41c3ce5fa1acd3898429.tar.gz hercules-26c532c222acf2f68dfa41c3ce5fa1acd3898429.tar.bz2 hercules-26c532c222acf2f68dfa41c3ce5fa1acd3898429.tar.xz hercules-26c532c222acf2f68dfa41c3ce5fa1acd3898429.zip |
Fixed bugreport:5788 no 2 Releasing Spells should now update/reset sp reduction while WL_READING_SB is active.
Fixed bugreport:6029 GN_MANDRAGORA is now updated its success chance percentage.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16305 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/map/status.c b/src/map/status.c index 09e574ee2..33d9f5670 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -5852,6 +5852,9 @@ int status_get_sc_def(struct block_list *bl, enum sc_type type, int rate, int ti case SC_VACUUM_EXTREME: tick -= 50*status->str; break; + case SC_MANDRAGORA: + sc_def = (status->vit+status->luk)/5; + break; default: //Effect that cannot be reduced? Likely a buff. if (!(rnd()%10000 < rate)) |