From 8a262f4e366b50ae8c75aba53a89953f308b28dd Mon Sep 17 00:00:00 2001 From: Mylloon Date: Fri, 5 Nov 2021 02:19:45 +0100 Subject: [PATCH] fix error when winning in a full board --- minimax.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minimax.py b/minimax.py index d7b02d8..1d62b55 100644 --- a/minimax.py +++ b/minimax.py @@ -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é')} !")