You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, while per-player data for each team appears to be calculated correctly, the Total calculations for some fields are only done for one team, not the other. This works fine for OvD CTF games, but for ADL games it would make sense to sum all available fields.
I think this is the relevant code from templateUtils.ts:
Several data points are totalled for blue but not for red, but looks like the only data that's unique to red team is ${TemplateUtils.getRow(this.airshots, isComparison, "airshots")}
Can these summations be merged so that no matter what team plays offense or defense, the data totals are counted?
The text was updated successfully, but these errors were encountered:
Currently, while per-player data for each team appears to be calculated correctly, the
Total
calculations for some fields are only done for one team, not the other. This works fine for OvD CTF games, but for ADL games it would make sense to sum all available fields.I think this is the relevant code from
templateUtils.ts
:Several data points are totalled for blue but not for red, but looks like the only data that's unique to red team is
${TemplateUtils.getRow(this.airshots, isComparison, "airshots")}
Can these summations be merged so that no matter what team plays offense or defense, the data totals are counted?
The text was updated successfully, but these errors were encountered: