correctly parse SexChanger

This commit is contained in:
wish
2023-07-19 21:42:54 +10:00
parent d6b8ac96d8
commit 4826882bcd
2 changed files with 11 additions and 5 deletions

View File

@@ -203,5 +203,5 @@ func (save *CharacterSaveData) updateStructWithSaveData() {
func handleMsgMhfSexChanger(s *Session, p mhfpacket.MHFPacket) {
pkt := p.(*mhfpacket.MsgMhfSexChanger)
doAckSimpleSucceed(s, pkt.AckHandle, []byte{0x00, 0x00, 0x00, 0x00})
doAckSimpleSucceed(s, pkt.AckHandle, make([]byte, 4))
}