get rid of the jail for now by just commenting out 2 lines.

This commit is contained in:
Daniel Weber 2023-01-08 21:19:06 -05:00
parent 28f516018e
commit afd42b9164

View File

@ -858,10 +858,10 @@ static void Board_Square_Was_Toggled(uint8_t j, uint8_t i)
}
else if (Board_Lights[j][i] == POTENTIAL_TAKE)
{
Taken_Piece = Board_State[j][i];
// Taken_Piece = Board_State[j][i];
Board_State[j][i] = SQUARE_EMPTY;
Game_State = (White_Turn ? GAME_STATE_P1_TURN_TAKING : GAME_STATE_P2_TURN_TAKING);
Mark_Taken_Piece_Spots_In_Jail();
// Mark_Taken_Piece_Spots_In_Jail();
clear_lights();
Board_Lights[j][i] = PIECE_NEEDS_TO_BE_HERE;
}