mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-12 23:14:36 +01:00
Fix MSG_MHF_SAVE_FAVORITE_QUEST parser
This commit is contained in:
@@ -21,7 +21,7 @@ func (m *MsgMhfSaveFavoriteQuest) Opcode() network.PacketID {
|
||||
func (m *MsgMhfSaveFavoriteQuest) Parse(bf *byteframe.ByteFrame) error {
|
||||
m.AckHandle = bf.ReadUint32()
|
||||
m.DataSize = bf.ReadUint16()
|
||||
m.Data = bf.ReadBytes(m.DataSize)
|
||||
m.Data = bf.ReadBytes(uint(m.DataSize))
|
||||
}
|
||||
|
||||
// Build builds a binary packet from the current data.
|
||||
|
||||
Reference in New Issue
Block a user