From a6c7d2d7d14170a7b86956e947f5adf82dd757c9 Mon Sep 17 00:00:00 2001 From: Ian Haken Date: Wed, 10 Jun 2026 20:21:24 -0700 Subject: [PATCH] Fix solo scoring. --- src/engine/game/player.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/engine/game/player.ts b/src/engine/game/player.ts index f216e6af..b79126ec 100644 --- a/src/engine/game/player.ts +++ b/src/engine/game/player.ts @@ -75,9 +75,9 @@ export class PlayerHelper { if (this.players().length === 1) { const [player] = this.players(); if (this.beatSoloGoal()) { - return [[], [player]]; + return [[player]]; } - return [[player]]; + return [[], [player]]; } const scores = this.players() .map((player) => ({ player, score: this.getScore(player) }))