From 5deb4e3fd1cf83d8788304c3c9cb1f08383c7579 Mon Sep 17 00:00:00 2001 From: GeorgesCoding Date: Tue, 2 Jul 2024 15:03:53 -0400 Subject: [PATCH] fixed issue with dialouge window addText was given 6 inputs instead of 5, was because I added an additional input on accident --- Controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Controller.py b/Controller.py index cb140c9..8c890b3 100644 --- a/Controller.py +++ b/Controller.py @@ -389,7 +389,7 @@ def castle(piece, board, oldY, oldX, pSize, size, moveList, text, count): firstMove(piece, board, oldY, kingX) firstMove(rook, board, oldY, rookX) board[mY][tempX] = 0 - count = addText(text, str(PIECE[piece]) + str(side), count, 0, 0, 0) + count = addText(text, str(PIECE[piece]) + str(side), count, 0, 0) return True, count return False, count