From 539fcf9f07a70143cb687b66ae7ed664df518228 Mon Sep 17 00:00:00 2001 From: wish Date: Fri, 18 Nov 2022 20:56:36 +1100 Subject: [PATCH] add comments --- server/channelserver/handlers.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/channelserver/handlers.go b/server/channelserver/handlers.go index 50039b27c..4cf2991e4 100644 --- a/server/channelserver/handlers.go +++ b/server/channelserver/handlers.go @@ -1501,9 +1501,9 @@ func handleMsgMhfGetEtcPoints(s *Session, p mhfpacket.MHFPacket) { resp := byteframe.NewByteFrame() resp.WriteUint8(0x3) // Maybe a count of uint32(s)? - resp.WriteUint32(0) - resp.WriteUint32(14) - resp.WriteUint32(14) + resp.WriteUint32(0) // Point bonus quests + resp.WriteUint32(0) // Daily quests + resp.WriteUint32(0) // HS promotion points doAckBufSucceed(s, pkt.AckHandle, resp.Data()) }