This commit is contained in:
azw 2023-03-22 07:35:26 +00:00
parent 9dfaa0d3a8
commit ffe5cb2cf4

View File

@ -238,4 +238,19 @@ void Team::GenBattleReportData(a8::MutableXObject* params)
return true;
});
}
{
int pvp_team_kills = 0;
auto members_pb = a8::MutableXObject::CreateArray();
TraverseMembers
(
[members_pb] (Human* hum)
{
return true;
});
params->SetVal("pvp_team_kills", pvp_team_kills);
}
}