Update app.js

master
Andy Smy 2025-04-21 20:58:26 +01:00 committed by GitHub
parent 6d362a7e5d
commit c394c0dcad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 2 deletions

View File

@ -55,7 +55,7 @@ function showLog() {
if(counter==6) {
startOver();
} else {
menu = resumeGame();
resumeGame();
}
}
});
@ -124,7 +124,11 @@ function countDown(dir) {
Bangle.setUI({
mode : "custom",
btn : ()=>{
resumeGame();
if(counter==6) {
startOver();
} else {
resumeGame();
}
}
});
return;