diff options
author | Kolkka <lmiranda@lumigo.net> | 2016-03-16 22:46:36 -0600 |
---|---|---|
committer | Kolkka <lmiranda@lumigo.net> | 2016-03-16 22:46:36 -0600 |
commit | 327f9679f0f47bca96af2ef870ac5851bd6293ab (patch) | |
tree | e7e8718a41e4029e362ae6424b1e75d713dd760a /src/map/status.h | |
parent | 3cecbe83ddf16d2884706a3a77f24a0228b794bd (diff) | |
download | hercules-327f9679f0f47bca96af2ef870ac5851bd6293ab.tar.gz hercules-327f9679f0f47bca96af2ef870ac5851bd6293ab.tar.bz2 hercules-327f9679f0f47bca96af2ef870ac5851bd6293ab.tar.xz hercules-327f9679f0f47bca96af2ef870ac5851bd6293ab.zip |
Fixes HerculesWS/Hercules#1198 and fixes HerculesWS/Hercules#1194 introduced in pull request #1189
Changed other instances of MAX_WEAPON_TYPE to MAX_SINGLE_WEAPON_TYPE.
Diffstat (limited to 'src/map/status.h')
-rw-r--r-- | src/map/status.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/status.h b/src/map/status.h index 046227b78..fda700387 100644 --- a/src/map/status.h +++ b/src/map/status.h @@ -2162,7 +2162,7 @@ BEGIN_ZEROED_BLOCK; /* Everything within this block will be memset to 0 when sta int max_weight_base[CLASS_COUNT]; int HP_table[CLASS_COUNT][MAX_LEVEL + 1]; int SP_table[CLASS_COUNT][MAX_LEVEL + 1]; - int aspd_base[CLASS_COUNT][MAX_WEAPON_TYPE+1]; // +1 for RENEWAL_ASPD + int aspd_base[CLASS_COUNT][MAX_SINGLE_WEAPON_TYPE+1]; // +1 for RENEWAL_ASPD sc_type Skill2SCTable[MAX_SKILL]; // skill -> status int IconChangeTable[SC_MAX]; // status -> "icon" (icon is a bit of a misnomer, since there exist values with no icon associated) unsigned int ChangeFlagTable[SC_MAX]; // status -> flags |