chore(mhfpacket): remove orphaned commented-out panics in stub parsers

Replace dead `//panic("Not implemented")` after return statements with
TODO comments indicating these are stub parsers with unknown fields.
This commit is contained in:
Houmgaor
2026-02-23 17:11:19 +01:00
parent 7dec7cbcef
commit 7f13ee6a51
2 changed files with 1 additions and 3 deletions

View File

@@ -25,9 +25,8 @@ func (m *MsgMhfAddUdPoint) Parse(bf *byteframe.ByteFrame, ctx *clientctx.ClientC
m.AckHandle = bf.ReadUint32()
m.Unk1 = bf.ReadUint32()
m.Unk2 = bf.ReadUint32()
// TODO: Parse is a stub — field meanings unknown
return nil
//panic("Not implemented")
}
// Build builds a binary packet from the current data.

View File

@@ -24,7 +24,6 @@ func (m *MsgMhfSetKiju) Parse(bf *byteframe.ByteFrame, ctx *clientctx.ClientCont
m.AckHandle = bf.ReadUint32()
m.Unk1 = bf.ReadUint16()
return nil
//panic("Not implemented")
}
// Build builds a binary packet from the current data.