diff options
author | Haru <haru@dotalux.com> | 2018-06-18 20:40:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-18 20:40:52 +0200 |
commit | 1f6dff9f8938c46292778e972171c523b9846abe (patch) | |
tree | 0aa0bd292ae0c24f4c01d2c7617da442ed93a9f8 /src/map/clif.c | |
parent | a9d70598a44e000479d4b2a9347e2b76f35bd9d6 (diff) | |
parent | cc7b138dacab0ca76bdba721dec526b9525737f3 (diff) | |
download | hercules-1f6dff9f8938c46292778e972171c523b9846abe.tar.gz hercules-1f6dff9f8938c46292778e972171c523b9846abe.tar.bz2 hercules-1f6dff9f8938c46292778e972171c523b9846abe.tar.xz hercules-1f6dff9f8938c46292778e972171c523b9846abe.zip |
Merge pull request #2066 from Asheraf/stylistfollowup
correct wrong respond message being used in stylist shop
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index a4d2f62b1..8b1f2a8ca 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -20827,7 +20827,7 @@ void clif_parse_cz_req_style_change(int fd, struct map_session_data *sd) if (p->BottomAccessory > 0) clif->cz_req_style_change_sub(sd, LOOK_HEAD_BOTTOM, p->BottomAccessory, true); - clif->style_change_response(sd, true); + clif->style_change_response(sd, STYLIST_SHOP_SUCCESS); return; } @@ -20850,7 +20850,7 @@ void clif_cz_req_style_change_sub(struct map_session_data *sd, int type, int16 i } } -void clif_style_change_response(struct map_session_data *sd, int8 flag) +void clif_style_change_response(struct map_session_data *sd, enum stylist_shop flag) { #if PACKETVER >= 20151104 struct PACKET_ZC_STYLE_CHANGE_RES p; |