Chess_update

This commit is contained in:
VS-Code
2026-02-25 11:11:21 +01:00
parent 3be3030a37
commit 86b537e3eb

View File

@@ -682,10 +682,13 @@ while board.playing:
print(f"{COL.RESET}\n ---- CHESS ---- Turn: {turn}")
board.print_board()
move = input(text)
if move == "exit":
break
if len(move) !=5 or not board.encode_and_make_move(move):
text = "Move not possible new move: "
continue
turn += 1