stub GetGemInfo

This commit is contained in:
wish
2022-09-08 15:16:44 +10:00
parent 580bfb12fe
commit d81e55cab4
2 changed files with 17 additions and 7 deletions

View File

@@ -58,6 +58,9 @@ func handleMsgMhfPostTowerInfo(s *Session, p mhfpacket.MHFPacket) {
doAckSimpleSucceed(s, pkt.AckHandle, []byte{0x00, 0x00, 0x00, 0x00})
}
func handleMsgMhfGetGemInfo(s *Session, p mhfpacket.MHFPacket) {}
func handleMsgMhfGetGemInfo(s *Session, p mhfpacket.MHFPacket) {
pkt := p.(*mhfpacket.MsgMhfGetGemInfo)
doAckBufSucceed(s, pkt.AckHandle, make([]byte, 8))
}
func handleMsgMhfPostGemInfo(s *Session, p mhfpacket.MHFPacket) {}