Update left wording

This commit is contained in:
bigJIU 2023-04-03 18:30:28 +08:00
parent 0de883ae54
commit 7636bdd2d1
2 changed files with 2 additions and 2 deletions

View File

View File

@ -228,7 +228,7 @@
}
}
leftLevel.innerText = "There are " + leftNum +" levels left."
leftLevel.innerText = leftNum +" levels left."
leftNum--;
for (i = 0; i < levelNum - 1; i++) {
console.log("Play level: %s", levels[i])
@ -238,7 +238,7 @@
console.log(i)
var index = levelNames.indexOf(title.innerText);
title.innerText = levelNames[index + 1];
leftLevel.innerText = "There are " + leftNum +" levels left."
leftLevel.innerText = leftNum +" levels left."
leftNum--;
});
}