From cdc6f0ffd029086b9708b3937b0879bbd9dd9e19 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Thu, 30 May 2019 16:39:51 +0800 Subject: [PATCH] 1 --- server/gameserver/human.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/server/gameserver/human.cc b/server/gameserver/human.cc index bad5a31..03c200a 100644 --- a/server/gameserver/human.cc +++ b/server/gameserver/human.cc @@ -1671,7 +1671,9 @@ void Human::SendUIUpdate() void Human::SendWxVoip() { cs::SMWxVoip notifymsg; - notifymsg.set_group_id(a8::XValue(room->room_uuid).GetString()); + if (!team_uuid.empty()) { + notifymsg.set_group_id(a8::XValue(room->room_uuid).GetString() + team_uuid); + } SendNotifyMsg(notifymsg); }