correctiob regles classqies
continuous-integration/drone/push Build is passing Details

master
Céleste BARBOSA 11 months ago
parent eee141074c
commit a60999ac2c

@ -85,7 +85,9 @@ namespace CoreLibrary.Regles
throw new PartieNonCommenceeException();
}
if (++joueurCourant >= joueurs.Length)
++joueurCourant;
if (joueurCourant >= joueurs.Length)
{
joueurCourant = 0;
}

Loading…
Cancel
Save