summaryrefslogtreecommitdiff
path: root/src/map/clif.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/clif.c')
-rw-r--r--src/map/clif.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index 836fc2fc2..5bab7ef15 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -16381,6 +16381,7 @@ void clif_quest_update_objective(struct map_session_data *sd, struct quest *qd)
/// 08fe <packet len>.W { <quest id>.L <mob id>.L <total count>.W <current count>.W }*3
void clif_quest_notify_objective(struct map_session_data *sd, struct quest *qd)
{
+#if PACKETVER >= 20150513
int i, len, real_len;
uint8 *buf = NULL;
struct packet_quest_hunt_info *packet = NULL;
@@ -16412,6 +16413,7 @@ void clif_quest_notify_objective(struct map_session_data *sd, struct quest *qd)
packet->PacketLength = real_len;
clif->send(buf, real_len, &sd->bl, SELF);
aFree(buf);
+#endif
}
void clif_parse_questStateAck(int fd, struct map_session_data *sd) __attribute__((nonnull (2)));