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 3c05b41 commit 7e66251Copy full SHA for 7e66251
web/core/src/player.ts
@@ -195,6 +195,8 @@ export class Player {
195
// TODO(michaelaaron) - Turn this into something more reasonable.
196
if(this?.replay?.steps && !(this?.replay?.steps as any)?.[0]?.stepType && this?.replay?.configuration?.game === 'repeated_poker') {
197
this.replay.steps = processEpisodeData(this.replay, 'repeated_poker')
198
+ } else if (this?.replay?.steps && !(this?.replay?.steps as any)?.[0]?.stepType && this?.replay?.configuration?.game === 'chess') {
199
+ this.replay.steps = processEpisodeData(this.replay, 'chess')
200
}
201
202
// Always update controls and render the current state.
0 commit comments