diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-03-06 21:17:37 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-03-06 22:28:06 +0300 |
commit | 4f6b2ebd825282937015efabbd35fc2cc6d992db (patch) | |
tree | 3818430c8548c96e3ee9b9c84161449bb1e1b01d /src/map/status.h | |
parent | 4a2c0e09bf758b57a52d9714d5306fee587544cd (diff) | |
download | hercules-4f6b2ebd825282937015efabbd35fc2cc6d992db.tar.gz hercules-4f6b2ebd825282937015efabbd35fc2cc6d992db.tar.bz2 hercules-4f6b2ebd825282937015efabbd35fc2cc6d992db.tar.xz hercules-4f6b2ebd825282937015efabbd35fc2cc6d992db.zip |
Check allowed range for "View" field in item_db for weapon items.
Also fix some array sizes.
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 296b5baae..4e2f1bdc0 100644 --- a/src/map/status.h +++ b/src/map/status.h @@ -2169,7 +2169,7 @@ BEGIN_ZEROED_BLOCK; /* Everything within this block will be memset to 0 when sta /* */ struct s_refine_info refine_info[REFINE_TYPE_MAX]; /* */ - int atkmods[3][MAX_WEAPON_TYPE];//ATK weapon modification for size (size_fix.txt) + int atkmods[3][MAX_SINGLE_WEAPON_TYPE];//ATK weapon modification for size (size_fix.txt) char job_bonus[CLASS_COUNT][MAX_LEVEL]; sc_conf_type sc_conf[SC_MAX]; END_ZEROED_BLOCK; /* End */ |