We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f8d442 commit c30fc94Copy full SHA for c30fc94
1 file changed
client/src/playback/Match.ts
@@ -108,8 +108,9 @@ export default class Match {
108
for (let i = 0; i < footer.timelineMarkersLength(); i++) {
109
const marker = footer.timelineMarkers(i)!
110
111
+ // Add one to round so that the visualizer properly shows the action completed state
112
this.timelineMarkers.push({
- round: marker.round(),
113
+ round: marker.round() + 1,
114
team: marker.team(),
115
colorHex: marker.colorHex(),
116
label: marker.label() ?? 'Unknown'
0 commit comments