We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04b2d0e commit f75954aCopy full SHA for f75954a
frontend/src/helpers/ChangeDetails.ts
@@ -219,6 +219,8 @@ function teamStateChangeTitle(change: Change_UpdateTeamState): string {
219
return `Remove red card ${change.removeRedCard}`
220
} else if (change.removeFoul !== undefined) {
221
return `Remove foul ${change.removeFoul}`
222
+ } else if (change.botSubstitutionsLeft !== undefined) {
223
+ return `Bot substitutions left: ${change.botSubstitutionsLeft}`
224
}
225
return "Unknown team state change: " + JSON.stringify(change)
226
0 commit comments