fix error when winning in a full board

This commit is contained in:
Mylloon 2021-11-05 02:19:45 +01:00
parent 82abfdf6da
commit 8a262f4e36

View file

@ -227,7 +227,7 @@ class Morpion():
self._placementPiece(self.joueurB, self._demandeCaseB()) # on place la pièce du joueur là où il veut
self.joueurActuel = self.joueurA
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')}.")
else:
print(f"🎉 Partie terminée, le {self.gras(f'joueur {self.gagnant} a gagné')} !")