Commit 95ee718a authored by chenweijian's avatar chenweijian

cp

parent 7016cc43
......@@ -305,7 +305,9 @@ func SendSheepGameResult(matchId, winId, userId1, userId2 uint64, nick1, nick2,
func SendCpInviteNotice(userId uint64, code, name, avatar, content string) error {
defer utils.CheckGoPanic()
msg := &userProxy.CpInvite{
User: &userProxy.User{}, Msg: content}
User: &userProxy.User{Id: userId, Code: code, Nick: name, Avatar: avatar},
Msg: content,
}
if buffer, err := proto.Marshal(msg); err == nil {
userIds := []uint64{userId}
rspUids, err := multicast(userIds, MsgTypeCpInvite, buffer)
......
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