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)))