diff --git a/quizbowl/TossupRoom.js b/quizbowl/TossupRoom.js index 2f49aa807..cd477c0f7 100644 --- a/quizbowl/TossupRoom.js +++ b/quizbowl/TossupRoom.js @@ -132,7 +132,7 @@ export const TossupRoomMixin = (QuestionRoomClass) => class extends QuestionRoom case 'reject': this.buzzedIn = null; this.players[userId].updateStats(points, celerity); - if (!this.settings.rebuzz && this.buzzes.length === Object.keys(this.sockets).length) { + if (!this.settings.rebuzz && Object.keys(this.sockets).every(id => this.buzzes.includes(id))) { this.revealTossupAnswer(); Object.values(this.players).forEach(player => { player.tuh++; }); } else {