diff options
author | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-05-17 09:01:05 +0000 |
---|---|---|
committer | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-05-17 09:01:05 +0000 |
commit | 3c450cce8eb590111a56cc337a0d8cba5b3e57c3 (patch) | |
tree | 014eddc0bacd701be9fc2bf5e54c55bd9da91394 /src/map/status.c | |
parent | 77a4fdc9fead3a1984290e2b9b79148704d2c3f0 (diff) | |
download | hercules-3c450cce8eb590111a56cc337a0d8cba5b3e57c3.tar.gz hercules-3c450cce8eb590111a56cc337a0d8cba5b3e57c3.tar.bz2 hercules-3c450cce8eb590111a56cc337a0d8cba5b3e57c3.tar.xz hercules-3c450cce8eb590111a56cc337a0d8cba5b3e57c3.zip |
Fixed bugreport:5622 Fixed bug with renewal mode berserk not removing twohandquicken icon
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16120 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/map/status.c b/src/map/status.c index 52d0d41aa..2d777a7ec 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -6336,6 +6336,11 @@ int status_change_start(struct block_list* bl,enum sc_type type,int rate,int val status_change_end(bl, SC_AURABLADE, INVALID_TIMER); status_change_end(bl, SC_MERC_QUICKEN, INVALID_TIMER); } +#ifdef RENEWAL + else { + status_change_end(bl, SC_TWOHANDQUICKEN, INVALID_TIMER); + } +#endif break; case SC_ASSUMPTIO: status_change_end(bl, SC_KYRIE, INVALID_TIMER); |