From 14b413ebbdf2c0b080997c0359970cd0acb66f39 Mon Sep 17 00:00:00 2001 From: Ross Andrews Date: Fri, 29 May 2026 22:32:55 -0500 Subject: [PATCH] lol score total typo --- src/game/scoring.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/scoring.ts b/src/game/scoring.ts index fcf270b..72dbb0d 100644 --- a/src/game/scoring.ts +++ b/src/game/scoring.ts @@ -3,7 +3,7 @@ export function isIndividualScoreValid(n: number): boolean { } export function requiredRoundSum(playerCount: number): number { - if (playerCount === 3) return -105 + if (playerCount === 3) return -95 if (playerCount >= 7) return -100 return -110 }