From cf91478abb2728d2dcdd77c2f20f6eb31118c56f Mon Sep 17 00:00:00 2001 From: Andrew Gutekanst Date: Thu, 23 Jan 2020 21:07:29 -0500 Subject: [PATCH] Fix typo in MsgSysGetUserBinary --- server/channelserver/handlers.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/channelserver/handlers.go b/server/channelserver/handlers.go index a79cff94e..562cc4f95 100644 --- a/server/channelserver/handlers.go +++ b/server/channelserver/handlers.go @@ -563,8 +563,8 @@ func handleMsgSysSetUserBinary(s *Session, p mhfpacket.MHFPacket) { func handleMsgSysGetUserBinary(s *Session, p mhfpacket.MHFPacket) { pkt := p.(*mhfpacket.MsgSysGetUserBinary) - - resp := bf.NewByteFrame() + + resp := byteframe.NewByteFrame() if pkt.BinaryType == 1 { // Stub name response with character ID resp.WriteBytes([]byte(fmt.Sprintf("CID%d", s.charID)))