changed code -> tiny change, actually done now
This commit is contained in:
parent
cab3bad62e
commit
f8f6a5c823
4
code.js
4
code.js
@ -25,7 +25,7 @@ let scoreO = 0;
|
|||||||
let scoreCounterO = 100;
|
let scoreCounterO = 100;
|
||||||
let gameOver = false;
|
let gameOver = false;
|
||||||
let winner;
|
let winner;
|
||||||
let highScore;
|
let highScore = 0;
|
||||||
let allowHSCookies;
|
let allowHSCookies;
|
||||||
let saveChoiceCookie;
|
let saveChoiceCookie;
|
||||||
let somethingIsSelected = false;
|
let somethingIsSelected = false;
|
||||||
@ -450,9 +450,11 @@ function checkWinCondition(){
|
|||||||
} else if(allowHSCookies && parseInt(highScore) < scoreO){
|
} else if(allowHSCookies && parseInt(highScore) < scoreO){
|
||||||
document.cookie = "highScore=" + scoreO + "; expires=Thu, 5 Dec 2030 12:00:00 UTC";
|
document.cookie = "highScore=" + scoreO + "; expires=Thu, 5 Dec 2030 12:00:00 UTC";
|
||||||
}
|
}
|
||||||
|
if(allowHSCookies) {
|
||||||
highScore = getCookie("highScore");
|
highScore = getCookie("highScore");
|
||||||
document.getElementById("highScore").innerText = "Highscore: " + highScore;
|
document.getElementById("highScore").innerText = "Highscore: " + highScore;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
function score (field){
|
function score (field){
|
||||||
if(field.piece === 0 && turnPlayer === "Player-Turn: X" && scoreCounterX > 10){
|
if(field.piece === 0 && turnPlayer === "Player-Turn: X" && scoreCounterX > 10){
|
||||||
|
Loading…
Reference in New Issue
Block a user