Better Ace

This commit is contained in:
2023-03-23 16:45:53 +01:00
parent 472d1c066e
commit 0bddf64797

View File

@@ -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: