Skip to content

Commit c30fc94

Browse files
Fix timeline marker round number
1 parent 7f8d442 commit c30fc94

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

client/src/playback/Match.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,9 @@ export default class Match {
108108
for (let i = 0; i < footer.timelineMarkersLength(); i++) {
109109
const marker = footer.timelineMarkers(i)!
110110

111+
// Add one to round so that the visualizer properly shows the action completed state
111112
this.timelineMarkers.push({
112-
round: marker.round(),
113+
round: marker.round() + 1,
113114
team: marker.team(),
114115
colorHex: marker.colorHex(),
115116
label: marker.label() ?? 'Unknown'

0 commit comments

Comments
 (0)