We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a309713 commit 002826eCopy full SHA for 002826e
1 file changed
app/js/ui/screens/duel.js
@@ -815,7 +815,11 @@ var DuelScreen = (function() {
815
duelState.phase = 'result';
816
duelState.finalWinsMe = _countWinsForUser(duel.roundResults, user);
817
duelState.finalWinsOpp = _countLossesForUser(duel.roundResults, user);
818
- } else if (duelState.phase === 'waiting' || duelState.phase === 'seal') {
+ } else if ((duelState.phase === 'waiting' || duelState.phase === 'seal') &&
819
+ duelState.currentRound <= duel.roundResults.length) {
820
+ // Only stay on reveal for the most recently resolved round.
821
+ // Once the player has advanced to the next round, do not
822
+ // force the UI back into the prior round's reveal screen.
823
duelState.phase = 'reveal';
824
}
825
0 commit comments