From b44f0e66f4ddfba8b79336da2be686fc27f26363 Mon Sep 17 00:00:00 2001 From: aleos Date: Thu, 10 Sep 2020 15:43:07 -0400 Subject: [PATCH] Fixes packet header --- src/map/clif.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/map/clif.cpp b/src/map/clif.cpp index d2129d5503..ffa0547f86 100644 --- a/src/map/clif.cpp +++ b/src/map/clif.cpp @@ -21582,7 +21582,7 @@ bool clif_synthesisui_open(struct map_session_data *sd, t_itemid itemid) { PACKET_ZC_LAPINEDDUKDDAK_OPEN p; - p.packetType = ZC_LAPINE_SYNTHESIS_OPEN; + p.packetType = HEADER_ZC_LAPINEDDUKDDAK_OPEN; p.itemId = client_nameid(itemid); clif_send(&p, sizeof(p), &sd->bl, SELF); @@ -21606,7 +21606,7 @@ void clif_synthesisui_result(struct map_session_data *sd, e_item_synthesis_resul PACKET_ZC_LAPINEDDUKDDAK_RESULT p; - p.packetType = ZC_LAPINE_SYNTHESIS_RESULT; + p.packetType = HEADER_ZC_LAPINEDDUKDDAK_RESULT; p.result = result; clif_send(&p, sizeof(p), &sd->bl, SELF); @@ -21715,7 +21715,7 @@ bool clif_lapine_upgrade_open(struct map_session_data *sd, t_itemid itemid) { PACKET_ZC_LAPINEUPGRADE_OPEN p; - p.packetType = ZC_LAPINE_UPGRADE_OPEN; + p.packetType = HEADER_ZC_LAPINEUPGRADE_OPEN; p.itemId = client_nameid(itemid); clif_send(&p, sizeof(p), &sd->bl, SELF); @@ -21739,7 +21739,7 @@ void clif_lapine_upgrade_result(struct map_session_data *sd, e_item_upgrade_resu PACKET_ZC_LAPINEUPGRADE_RESULT p; - p.packetType = ZC_LAPINE_UPGRADE_RESULT; + p.packetType = HEADER_ZC_LAPINEUPGRADE_RESULT; p.result = result; clif_send(&p, sizeof(p), &sd->bl, SELF);