diff options
author | playtester <playtester@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2013-03-15 20:37:30 +0000 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-04-11 16:18:29 -0300 |
commit | 278e9949a662dd320c5fc408f585da4600526154 (patch) | |
tree | fdfee1c05df1471cb3e3fc2fc0b87a00e52b9a59 /src | |
parent | 9a0b84c93b8098b76911b09b103602797fede9dc (diff) | |
download | hercules-278e9949a662dd320c5fc408f585da4600526154.tar.gz hercules-278e9949a662dd320c5fc408f585da4600526154.tar.bz2 hercules-278e9949a662dd320c5fc408f585da4600526154.tar.xz hercules-278e9949a662dd320c5fc408f585da4600526154.zip |
- Then % ASPD bonus from Spear Quicken now depends on RENEWAL_ASPD rather than RENEWAL, this should fix the problem that there is no ASPD bonus at all if RENEWAL is activated but RENEWAL_ASPD is not (bugreport:7357)
- Added missing critical bonus on Valorous Assaulter's Katzbalger, it was only missing in the renewal db (bugreport:7355)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@17199 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src')
-rw-r--r-- | src/map/status.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/status.c b/src/map/status.c index 5d41acbe0..1ed8d91b5 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -7258,7 +7258,7 @@ int status_change_start(struct block_list* bl,enum sc_type type,int rate,int val case SC_MERC_QUICKEN: val2 = 300; break; -#ifndef RENEWAL +#ifndef RENEWAL_ASPD case SC_SPEARQUICKEN: val2 = 200+10*val1; break; |