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