diff options
author | Haru <haru@dotalux.com> | 2020-05-04 02:14:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-04 02:14:43 +0200 |
commit | f79ab314afc099cfca094e1dc554a3ed317d30e1 (patch) | |
tree | 2a9eb9604dec9df134904d3c1f6bfa107b231bd1 /src/map/pc.c | |
parent | a567830b477f8cbebbe64efde431a9f1bf870c86 (diff) | |
parent | fa8ff3c40d6b476f41a288a579b6aaaeab8c872d (diff) | |
download | hercules-f79ab314afc099cfca094e1dc554a3ed317d30e1.tar.gz hercules-f79ab314afc099cfca094e1dc554a3ed317d30e1.tar.bz2 hercules-f79ab314afc099cfca094e1dc554a3ed317d30e1.tar.xz hercules-f79ab314afc099cfca094e1dc554a3ed317d30e1.zip |
Merge pull request #2695 from 4144/updatepackets
Update packets up to 2020-04-14
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index a8ed4430e..06ab57e0e 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -11328,7 +11328,7 @@ static int pc_charm_timer(int tid, int64 tick, int id, intptr_t data) * @param max Maximum amount of charms to add. * @param type Charm type (@see spirit_charm_types) */ -static void pc_add_charm(struct map_session_data *sd, int interval, int max, int type) +static void pc_add_charm(struct map_session_data *sd, int interval, int max, enum spirit_charm_types type) { int tid, i; @@ -11370,7 +11370,7 @@ static void pc_add_charm(struct map_session_data *sd, int interval, int max, int * @param count Amount of charms to remove. * @param type Type of charm to remove. */ -static void pc_del_charm(struct map_session_data *sd, int count, int type) +static void pc_del_charm(struct map_session_data *sd, int count, enum spirit_charm_types type) { int i; |