diff options
author | Asheraf <acheraf1998@gmail.com> | 2018-06-25 06:08:51 +0100 |
---|---|---|
committer | Asheraf <acheraf1998@gmail.com> | 2018-07-24 02:15:37 +0100 |
commit | 620c55e87019a46ffffc6ffb69bea77df088b904 (patch) | |
tree | a7171972c1b207778ce2dc9ac944477ff759ae76 /src/map/map.h | |
parent | bb301746703582be9f7c30b969f03c1ab14d1228 (diff) | |
download | hercules-620c55e87019a46ffffc6ffb69bea77df088b904.tar.gz hercules-620c55e87019a46ffffc6ffb69bea77df088b904.tar.bz2 hercules-620c55e87019a46ffffc6ffb69bea77df088b904.tar.xz hercules-620c55e87019a46ffffc6ffb69bea77df088b904.zip |
Convert questinfo data into a vector
Diffstat (limited to 'src/map/map.h')
-rw-r--r-- | src/map/map.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/map/map.h b/src/map/map.h index d6779ca91..b8956d72c 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -922,8 +922,7 @@ struct map_data { } cell_buf; /* ShowEvent Data Cache */ - struct questinfo *qi_data; - unsigned short qi_count; + VECTOR_DECL(struct questinfo) qi_data; /* speeds up clif_updatestatus processing by causing hpmeter to run only when someone with the permission can view it */ unsigned short hpmeter_visible; |