diff options
author | Haru <haru@dotalux.com> | 2018-06-29 22:42:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-29 22:42:35 +0200 |
commit | fe476d318579755b30bb0ed5f61d402e5fa5754b (patch) | |
tree | 5f0ca6388601552375fb2fbaf96410dc76b76703 /src/map/status.c | |
parent | 887d53cac4391b438f07dccf7e148ff0769f6a55 (diff) | |
parent | 2170bf7c3cd95faf17030c5b458ab0d639e597fd (diff) | |
download | hercules-fe476d318579755b30bb0ed5f61d402e5fa5754b.tar.gz hercules-fe476d318579755b30bb0ed5f61d402e5fa5754b.tar.bz2 hercules-fe476d318579755b30bb0ed5f61d402e5fa5754b.tar.xz hercules-fe476d318579755b30bb0ed5f61d402e5fa5754b.zip |
Merge pull request #2095 from 4144/updatepackets
Update packets up to 2018-06-27 and fix some existing packets
Diffstat (limited to 'src/map/status.c')
-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 a4856f4da..f2275e47b 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -2694,7 +2694,7 @@ int status_calc_pc_(struct map_session_data* sd, enum e_status_calc_opt opt) int j = 0; for (j = 0; j < MAX_ITEM_OPTIONS; j++) { int16 option_index = sd->status.inventory[index].option[j].index; - struct item_option *ito = NULL; + struct itemdb_option *ito = NULL; if (option_index == 0 || (ito = itemdb->option_exists(option_index)) == NULL || ito->script == NULL) continue; |