diff options
author | Jedzkie <jedzkie13@rocketmail.com> | 2015-12-26 19:56:18 +0800 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-01-09 18:45:14 +0100 |
commit | a0f25125a6239894a86d51ae8dcf6a06a4d0a380 (patch) | |
tree | ed58fa16b74e46268cd8701948ce69e5bd5bb95d /src/map/clif.h | |
parent | d9d0e6275f579674735cf774069c27844a840397 (diff) | |
download | hercules-a0f25125a6239894a86d51ae8dcf6a06a4d0a380.tar.gz hercules-a0f25125a6239894a86d51ae8dcf6a06a4d0a380.tar.bz2 hercules-a0f25125a6239894a86d51ae8dcf6a06a4d0a380.tar.xz hercules-a0f25125a6239894a86d51ae8dcf6a06a4d0a380.zip |
Added support for MC_CARTDECORATE skill.
*This skill is supported only by 2015-08-05aRagexeRE clients onwards.*
Closes #1025 as merged
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/clif.h')
-rw-r--r-- | src/map/clif.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/map/clif.h b/src/map/clif.h index 5a6b01d31..7567e507b 100644 --- a/src/map/clif.h +++ b/src/map/clif.h @@ -1338,6 +1338,9 @@ struct clif_interface { void (*add_random_options) (unsigned char* buf, struct item* item); void (*pHotkeyRowShift) (int fd, struct map_session_data *sd); void (*dressroom_open) (struct map_session_data *sd, int view); + /* Cart Deco */ + void(*selectcart) (struct map_session_data *sd); + void(*pSelectCart) (int fd, struct map_session_data *sd); }; #ifdef HERCULES_CORE |