From 21cf7ab1ba8655ff142229b62e16379543ba6174 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Sat, 20 Apr 2024 15:36:25 +0800 Subject: [PATCH] 1 --- server/matchserver/team/team.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/matchserver/team/team.go b/server/matchserver/team/team.go index a26bc927..41f5b80b 100644 --- a/server/matchserver/team/team.go +++ b/server/matchserver/team/team.go @@ -624,6 +624,7 @@ func (this *team) checkMemberState() { params := map[string]string{ "c": "User", "a": "queryStatus", + "accountIds" : this.genAccountIdParam(), } url := fmt.Sprintf("%s/webapp/index.php", mt.Table.Config.GetById(0).GetFriendapiUrl()) @@ -664,6 +665,7 @@ func (this *team) genAccountIdParam() string { param := "" this.traverseMembers( func (m common.Player) bool { + param = param + m.GetAccountId() + "," return true }) return param