From 5c42665c8f236533d12bd09962c8e3459c4514a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Feh=C3=A9r?= Date: Thu, 23 Oct 2025 13:58:36 +0200 Subject: [PATCH] Fix idle time min value --- script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script.js b/script.js index a6d63a9..68a45aa 100644 --- a/script.js +++ b/script.js @@ -58,7 +58,7 @@ function idle() { let cardIndex = 0; setInterval(function() { idleTime+=2; - if (idleTime > 1) { + if (idleTime > 60) { openCard(cards, cardIndex++ % cards.length); } }, 10000);