fix TS errors: remove unused announcedBingo set, prefix unused playerId param
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -163,7 +163,6 @@ export class GameManager {
|
|||||||
hasBingo: boolean
|
hasBingo: boolean
|
||||||
}>()
|
}>()
|
||||||
private bingoAnnouncements: { playerId: string; displayName: string }[] = []
|
private bingoAnnouncements: { playerId: string; displayName: string }[] = []
|
||||||
private announcedBingo = new Set<string>()
|
|
||||||
private completedBingoCards: CompletedBingoCard[] = []
|
private completedBingoCards: CompletedBingoCard[] = []
|
||||||
|
|
||||||
generateBingoCards(playerIds: string[]): void {
|
generateBingoCards(playerIds: string[]): void {
|
||||||
@@ -401,7 +400,7 @@ export class GameManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private buildQuizQuestionForPlayer(
|
private buildQuizQuestionForPlayer(
|
||||||
playerId: string,
|
_playerId: string,
|
||||||
displayNames: Record<string, string>,
|
displayNames: Record<string, string>,
|
||||||
): QuizQuestion | null {
|
): QuizQuestion | null {
|
||||||
const round = this.currentQuizRound
|
const round = this.currentQuizRound
|
||||||
|
|||||||
Reference in New Issue
Block a user