diff options
author | Dastgir <dastgirp@gmail.com> | 2018-02-07 13:46:54 +0530 |
---|---|---|
committer | Dastgir <dastgirp@gmail.com> | 2018-02-09 21:54:42 +0530 |
commit | 132cc722fa490310b6e08a5cfe17625c8cf8baf1 (patch) | |
tree | 99f960c62aeca1233850dfa4e38f164e75ff2a69 /src/map/pc.c | |
parent | 19c94017a31d86f7848085162ffb741770975128 (diff) | |
download | hercules-132cc722fa490310b6e08a5cfe17625c8cf8baf1.tar.gz hercules-132cc722fa490310b6e08a5cfe17625c8cf8baf1.tar.bz2 hercules-132cc722fa490310b6e08a5cfe17625c8cf8baf1.tar.xz hercules-132cc722fa490310b6e08a5cfe17625c8cf8baf1.zip |
Implemented hatEffect.
Allows the player to have hatEffect specialeffects.
Base taken from rAthena
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 c18fdee9e..cf3444538 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; |