From e2d1792ceca6b4a69b9a277d880ce061a14bcf2e Mon Sep 17 00:00:00 2001 From: beo3000 Date: Mon, 29 Dec 2025 09:59:20 +0100 Subject: [PATCH] fix deathbox, first player starts with a X --- .../Games/DeathBox/DeathBoxGameLogicService.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Koogle.Application/Games/DeathBox/DeathBoxGameLogicService.cs b/src/Koogle.Application/Games/DeathBox/DeathBoxGameLogicService.cs index 916fb1e..191fa45 100644 --- a/src/Koogle.Application/Games/DeathBox/DeathBoxGameLogicService.cs +++ b/src/Koogle.Application/Games/DeathBox/DeathBoxGameLogicService.cs @@ -25,6 +25,8 @@ public class DeathBoxGameLogicService : IGameLogicService id => id, _ => new DeathBoxPlayerState()); + playerStates[playerOrder.First()].XCount += 1; // First player starts with an X + return new DeathBoxGameModel { CoffinSize = options.CoffinSize,