diff options
author | Haru <haru@dotalux.com> | 2018-11-13 17:38:21 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2018-11-13 17:38:21 +0100 |
commit | 35ee16dd3908c021752e439a4fe4ea9e83af9ec0 (patch) | |
tree | d0de667fae7b066a61d793fa8b1fa421718f70cc /src/map/pc.c | |
parent | 1e5df06b8a23ea13c3fc1b07339c261a77600bae (diff) | |
download | hercules-35ee16dd3908c021752e439a4fe4ea9e83af9ec0.tar.gz hercules-35ee16dd3908c021752e439a4fe4ea9e83af9ec0.tar.bz2 hercules-35ee16dd3908c021752e439a4fe4ea9e83af9ec0.tar.xz hercules-35ee16dd3908c021752e439a4fe4ea9e83af9ec0.zip |
Replace sd->channels with a VECTOR
This removes some shady array compaction code and prepares the ground
for some further fixes.
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index b8a6912ee..282eb7112 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -1330,6 +1330,7 @@ static bool pc_authok(struct map_session_data *sd, int login_id2, time_t expirat sd->bg_queue.client_has_bg_data = 0; sd->bg_queue.type = 0; + VECTOR_INIT(sd->channels); VECTOR_INIT(sd->script_queues); VECTOR_INIT(sd->achievement); // Achievements [Smokexyz/Hercules] VECTOR_INIT(sd->storage.item); // initialize storage item vector. |