rest: Increased max rest time from 120s to 600s

master
JamesClarke01 2025-02-22 18:37:48 +00:00
parent f8cc620c02
commit 5373d6280c
1 changed files with 2 additions and 2 deletions

View File

@ -232,11 +232,11 @@ const onTouchPerQuadrantPerMode = {
SET_REST: [
[MAIN_MENU, Bangle.buzz], [null, null],
[null, () => {
restSeconds = Math.min(120, Math.max(0, restSeconds - 15));
restSeconds = Math.min(600, Math.max(0, restSeconds - 15));
Bangle.buzz(100);
}],
[null, () => {
restSeconds = Math.min(120, Math.max(0, restSeconds + 15));
restSeconds = Math.min(600, Math.max(0, restSeconds + 15));
Bangle.buzz(100);
}],
],