diff --git a/Sources/BowlingLib/Model/Equipe.cs b/Sources/BowlingLib/Model/Equipe.cs index 1d194fd..84e1185 100644 --- a/Sources/BowlingLib/Model/Equipe.cs +++ b/Sources/BowlingLib/Model/Equipe.cs @@ -83,7 +83,7 @@ namespace BowlingLib.Model { foreach(Joueur j in Joueurs) { - if (nouvJoueur.Equals(j) return true; + if (nouvJoueur.Equals(j)) return true; } return false; }