Skip to content

Commit 5deb4e3

Browse files
committed
fixed issue with dialouge window
addText was given 6 inputs instead of 5, was because I added an additional input on accident
1 parent 5e3c9fd commit 5deb4e3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ def castle(piece, board, oldY, oldX, pSize, size, moveList, text, count):
389389
firstMove(piece, board, oldY, kingX)
390390
firstMove(rook, board, oldY, rookX)
391391
board[mY][tempX] = 0
392-
count = addText(text, str(PIECE[piece]) + str(side), count, 0, 0, 0)
392+
count = addText(text, str(PIECE[piece]) + str(side), count, 0, 0)
393393
return True, count
394394
return False, count
395395

0 commit comments

Comments
 (0)