Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
lulunac27a committed May 28, 2024
1 parent a1edd83 commit ead4869
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ function increaseScore(amount) {
function markCell(y, x) {
if (
numbersCalled.includes(bingoBoard[x - 1][y - 1]) &&
cellsMarked[x - 1][y - 1] != bingoBoard[x - 1][y - 1]
cellsMarked[x - 1][y - 1] != undefined
) {
increaseScore(100);
streak++;
Expand Down

0 comments on commit ead4869

Please sign in to comment.