Commit 9c1942d3 authored by chenweijian's avatar chenweijian

cp邀请socket

parent 0c164080
......@@ -4,6 +4,7 @@ import (
"encoding/json"
"git.hilo.cn/hilo-common/mylogrus"
"git.hilo.cn/hilo-common/protocol/userProxy"
"git.hilo.cn/hilo-common/utils"
"google.golang.org/protobuf/proto"
)
......@@ -302,6 +303,7 @@ func SendSheepGameResult(matchId, winId, userId1, userId2 uint64, nick1, nick2,
// cp邀请
func SendCpInviteNotice(userId uint64, code, name, avatar, content string) error {
defer utils.CheckGoPanic()
msg := &userProxy.CpInvite{UserCode: code, Name: name, Avatar: avatar, Msg: content}
if buffer, err := proto.Marshal(msg); err == nil {
userIds := []uint64{userId}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment