fix error when winning in a full board
This commit is contained in:
parent
82abfdf6da
commit
8a262f4e36
1 changed files with 1 additions and 1 deletions
|
@ -227,7 +227,7 @@ class Morpion():
|
||||||
self._placementPiece(self.joueurB, self._demandeCaseB()) # on place la pièce du joueur là où il veut
|
self._placementPiece(self.joueurB, self._demandeCaseB()) # on place la pièce du joueur là où il veut
|
||||||
self.joueurActuel = self.joueurA
|
self.joueurActuel = self.joueurA
|
||||||
self.afficher() # affichage du plateau final
|
self.afficher() # affichage du plateau final
|
||||||
if self._egalite():
|
if self._egalite() and len(self.gagnant) == 0:
|
||||||
print(f"😬 Partie terminée, {self.gras(f'égalité parfaite')}.")
|
print(f"😬 Partie terminée, {self.gras(f'égalité parfaite')}.")
|
||||||
else:
|
else:
|
||||||
print(f"🎉 Partie terminée, le {self.gras(f'joueur {self.gagnant} a gagné')} !")
|
print(f"🎉 Partie terminée, le {self.gras(f'joueur {self.gagnant} a gagné')} !")
|
||||||
|
|
Reference in a new issue