Skip to content

Commit

Permalink
Corrected timer
Browse files Browse the repository at this point in the history
  • Loading branch information
Rudy-Orozco committed Apr 27, 2024
1 parent adf1d2a commit e6d5b6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion html/WordSearchGame.js
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,7 @@ function SelectPlayer(id)
}

function startTimer() {
var countDownDate = new Date().getTime() + 5 * 60 * 70;
var countDownDate = new Date().getTime() + 5 * 60 * 1000;
// Update the count down every 1 second
var x = setInterval(function() {
var now = new Date().getTime();
Expand Down

0 comments on commit e6d5b6f

Please sign in to comment.