From 4c839440cd0b2b58299a055473e0e0d86febfabe Mon Sep 17 00:00:00 2001 From: Andrew Gutekanst Date: Tue, 21 Jan 2020 18:12:34 -0500 Subject: [PATCH] Fix typo --- server/channelserver/handlers.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/server/channelserver/handlers.go b/server/channelserver/handlers.go index 1f9e09ec4..4455367b9 100644 --- a/server/channelserver/handlers.go +++ b/server/channelserver/handlers.go @@ -152,9 +152,9 @@ func handleMsgSysCastBinary(s *Session, p mhfpacket.MHFPacket) { fmt.Println("Got chat message!") resp := &mhfpacket.MsgSysCastedBinary{ - CharID: s.charID, - Type0: 1, - Type1: 1, + CharID: s.charID, + Type0: 1, + Type1: 1, RawDataPayload: pkt.RawDataPayload, } s.server.BroadcastMHF(resp, s) @@ -1435,7 +1435,7 @@ func handleMsgMhfGetEquipSkinHist(s *Session, p mhfpacket.MHFPacket) {} func handleMsgMhfUpdateEquipSkinHist(s *Session, p mhfpacket.MHFPacket) {} func handleMsgMhfGetUdTacticsFollower(s *Session, p mhfpacket.MHFPacket) { - pkt := p.(*mhfpacket.MsgMhfGetUdTacticsFollowe) + pkt := p.(*mhfpacket.MsgMhfGetUdTacticsFollower) doSizedAckResp(s, pkt.AckHandle, []byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}) }