diff options
author | Haru <haru@dotalux.com> | 2018-05-06 17:55:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-06 17:55:50 +0200 |
commit | 2760e208c56aaab974eb14e7d8058277a5725343 (patch) | |
tree | 1080b8ad07dbcbe54000785ea38ff84d358fc5fb /src/map/clif.c | |
parent | 141df5f2f9421851fb974bf89e1fe5d58a4c61a8 (diff) | |
parent | 99bc25724106fe1d3b9e2922b1a08209f9cc35ba (diff) | |
download | hercules-2760e208c56aaab974eb14e7d8058277a5725343.tar.gz hercules-2760e208c56aaab974eb14e7d8058277a5725343.tar.bz2 hercules-2760e208c56aaab974eb14e7d8058277a5725343.tar.xz hercules-2760e208c56aaab974eb14e7d8058277a5725343.zip |
Merge pull request #2030 from 4144/updatepackets
Update packets.
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 451b1fb17..4e25a71ae 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -20597,6 +20597,11 @@ void clif_parse_attendance_reward_request(int fd, struct map_session_data *sd) #endif } +void clif_parse_cz_blocking_play_cancel(int fd, struct map_session_data *sd) __attribute__((nonnull(2))); +void clif_parse_cz_blocking_play_cancel(int fd, struct map_session_data *sd) +{ +} + void clif_ui_action(struct map_session_data *sd, int32 UIType, int32 data) { @@ -21623,6 +21628,7 @@ void clif_defaults(void) { clif->pDebug = clif_parse_debug; clif->pSkillSelectMenu = clif_parse_SkillSelectMenu; clif->pMoveItem = clif_parse_MoveItem; + clif->p_cz_blocking_play_cancel = clif_parse_cz_blocking_play_cancel; /* dull */ clif->pDull = clif_parse_dull; /* BGQueue */ |