summaryrefslogtreecommitdiff
path: root/src/map/clif.c
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2019-08-19 00:32:13 +0300
committerAndrei Karas <akaras@inbox.ru>2019-08-21 22:36:42 +0300
commit2f78bbf2379fa1452a783e9d7a9035e9e6732479 (patch)
tree37351e3383188007887033462de7aedc2a1cff9b /src/map/clif.c
parentc68e1ca5469c21f9b247db76915405692ed1d94c (diff)
downloadhercules-2f78bbf2379fa1452a783e9d7a9035e9e6732479.tar.gz
hercules-2f78bbf2379fa1452a783e9d7a9035e9e6732479.tar.bz2
hercules-2f78bbf2379fa1452a783e9d7a9035e9e6732479.tar.xz
hercules-2f78bbf2379fa1452a783e9d7a9035e9e6732479.zip
Fix packet ZC_MAKINGITEM_LIST
Diffstat (limited to 'src/map/clif.c')
-rw-r--r--src/map/clif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index d1de3b4d0..a027759b4 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -5998,7 +5998,7 @@ static void clif_cooking_list(struct map_session_data *sd, int trigger, uint16 s
len = sizeof(struct PACKET_ZC_MAKINGITEM_LIST) + MAX_SKILL_PRODUCE_DB * sizeof(struct PACKET_ZC_MAKINGITEM_LIST_sub);
WFIFOHEAD(fd, len);
p = WFIFOP(fd, 0);
- p->packetType = 0x25a;
+ p->packetType = HEADER_ZC_MAKINGITEM_LIST;
p->makeItem = list_type; // list type
c = 0;