Python-Checkers
Python-Checkers copied to clipboard
Valid move not taken into account
I believe the lines 104 and 137 of the board.py file should BOTH go from: row = max(r-3, 0) to row = max(r-3, -1)
Currently when a red pawn could eat up 2 white pieces and become king, the possibility is not given. The white however can do it.