diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-05-04 05:47:50 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-05-04 05:47:50 +0300 |
commit | 99bc25724106fe1d3b9e2922b1a08209f9cc35ba (patch) | |
tree | b66ef5a548d46fc468d74621d10b7fbf409a3908 /src/map/clif.c | |
parent | 4e6ed9351c9b29a0783d1cefb2e5883c5fe095f8 (diff) | |
download | hercules-99bc25724106fe1d3b9e2922b1a08209f9cc35ba.tar.gz hercules-99bc25724106fe1d3b9e2922b1a08209f9cc35ba.tar.bz2 hercules-99bc25724106fe1d3b9e2922b1a08209f9cc35ba.tar.xz hercules-99bc25724106fe1d3b9e2922b1a08209f9cc35ba.zip |
Add empty function for packet 0x0447 PACKET_CZ_BLOCKING_PLAY_CANCEL.
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 47d5a1586..98ab95c6c 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 */ |