summaryrefslogtreecommitdiff
path: root/src/map/clif.h
diff options
context:
space:
mode:
authorshennetsind <ind@henn.et>2013-04-15 23:27:29 -0300
committershennetsind <ind@henn.et>2013-04-15 23:27:29 -0300
commit2967335cb41866162a69732abe4fc3a07b02e27c (patch)
tree08ce3282b6204cfd0491a9aba2811139f046ada8 /src/map/clif.h
parent7a853ef214cc4f96574358759489f3769a805e4c (diff)
downloadhercules-2967335cb41866162a69732abe4fc3a07b02e27c.tar.gz
hercules-2967335cb41866162a69732abe4fc3a07b02e27c.tar.bz2
hercules-2967335cb41866162a69732abe4fc3a07b02e27c.tar.xz
hercules-2967335cb41866162a69732abe4fc3a07b02e27c.zip
Fixed Bug #7127
Also Implemented allow party invitations state. Implemented saving of client options (atm show_equip and allow party invitation) http://hercules.ws/board/tracker/issue-7127-view-equipment/ Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/clif.h')
-rw-r--r--src/map/clif.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/map/clif.h b/src/map/clif.h
index 89a330a90..0e13b29f2 100644
--- a/src/map/clif.h
+++ b/src/map/clif.h
@@ -575,6 +575,7 @@ struct clif_interface {
void (*hate_info) (struct map_session_data *sd, unsigned char hate_level,int class_, unsigned char type);
void (*mission_info) (struct map_session_data *sd, int mob_id, unsigned char progress);
void (*feel_hate_reset) (struct map_session_data *sd);
+ void (*partytickack) (struct map_session_data* sd, bool flag);
void (*equiptickack) (struct map_session_data* sd, int flag);
void (*viewequip_ack) (struct map_session_data* sd, struct map_session_data* tsd);
void (*viewequip_fail) (struct map_session_data* sd);
@@ -1071,6 +1072,7 @@ struct clif_interface {
void (*pCashShopClose) (int fd, struct map_session_data *sd);
void (*pCashShopSchedule) (int fd, struct map_session_data *sd);
void (*pCashShopBuy) (int fd, struct map_session_data *sd);
+ void (*pPartyTick) (int fd, struct map_session_data *sd);
} clif_s;
struct clif_interface *clif;