From e80094d9872dea999eb5b9bc08ca7561e485a7d6 Mon Sep 17 00:00:00 2001 From: DTieman Date: Thu, 23 Mar 2023 16:44:05 +0100 Subject: [PATCH] Ace now lets you play again if there are two players --- Mau/Game.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Mau/Game.cs b/Mau/Game.cs index 35e2231..9e75db0 100644 --- a/Mau/Game.cs +++ b/Mau/Game.cs @@ -84,7 +84,10 @@ public class Game break; case CardValue.ACE: TurnDirection *= -1; - CurrentPlayer = GetNextPlayer(); + if (Players.Count > 2) + { + CurrentPlayer = GetNextPlayer(); + } break; case CardValue.THREE: case CardValue.FOUR: