diff --git a/Mau/Game.cs b/Mau/Game.cs index 9e4cd53..e9c8084 100644 --- a/Mau/Game.cs +++ b/Mau/Game.cs @@ -83,8 +83,11 @@ public class Game CurrentPlayer = GetNextPlayer(2); break; case CardValue.ACE: - TurnDirection *= -1; - if (Players.Count > 2) CurrentPlayer = GetNextPlayer(); + if (Players.Count > 2) + { + TurnDirection *= -1; + CurrentPlayer = GetNextPlayer(); + } break; case CardValue.THREE: case CardValue.FOUR: