From 4a8d97c4edc1767eacfa256fa9e7070836c5621e Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Fri, 22 Dec 2023 01:15:12 +0100 Subject: [PATCH] Move message display coordinate in [A-J][0-9] form --- src/classes/Engines.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/classes/Engines.py b/src/classes/Engines.py index bfb5e78..cd9bc90 100644 --- a/src/classes/Engines.py +++ b/src/classes/Engines.py @@ -63,7 +63,7 @@ class PlayerEngine: def _show_better_move(self, move, heuristic): self.logger.debug(" -> Found a better move: {},{} | heuristic:{}".format( - move[1],move[2], + chr(move[1] + 65),move[2], heuristic ))