diff options
author | Haru <haru@dotalux.com> | 2018-04-03 00:04:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-03 00:04:17 +0200 |
commit | 237fd6d094d698f22dceccfb87e7957cdcf1af3d (patch) | |
tree | f967ad604e6e9ba91cc084fe4336c3dda1487ba9 /src/map/pc.c | |
parent | 112c34e0e1b92397f0df7eea459fcbac946d340b (diff) | |
parent | 1f5fc491881f1a75c261e6c2321c6b92eb2d01bc (diff) | |
download | hercules-237fd6d094d698f22dceccfb87e7957cdcf1af3d.tar.gz hercules-237fd6d094d698f22dceccfb87e7957cdcf1af3d.tar.bz2 hercules-237fd6d094d698f22dceccfb87e7957cdcf1af3d.tar.xz hercules-237fd6d094d698f22dceccfb87e7957cdcf1af3d.zip |
Merge pull request #1965 from dastgir/2018/3-hateffect
Implemented HatEffect
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 cd4b2a54f..4404101b9 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -1293,6 +1293,7 @@ bool pc_authok(struct map_session_data *sd, int login_id2, time_t expiration_tim VECTOR_INIT(sd->script_queues); VECTOR_INIT(sd->storage.item); // initialize storage item vector. + VECTOR_INIT(sd->hatEffectId); sd->state.dialog = 0; |