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.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é')} !")
|
||||
|
|
Reference in a new issue