From b0375719c0b56fdeea80217b51b81b3d768cd262 Mon Sep 17 00:00:00 2001 From: Aaron Crosman Date: Thu, 30 Apr 2026 20:52:08 -0400 Subject: [PATCH] Adding two harder levels to sound sweep. Co-authored-by: Copilot --- app/games/sound-sweep/game.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/games/sound-sweep/game.js b/app/games/sound-sweep/game.js index 899861b..07c8903 100644 --- a/app/games/sound-sweep/game.js +++ b/app/games/sound-sweep/game.js @@ -51,6 +51,9 @@ export const LEVELS = [ { sweepDurationMs: 80, isiMs: 80 }, { sweepDurationMs: 60, isiMs: 40 }, { sweepDurationMs: 40, isiMs: 20 }, + { sweepDurationMs: 30, isiMs: 15 }, + { sweepDurationMs: 20, isiMs: 10 }, + { sweepDurationMs: 15, isiMs: 10 }, ]; // ── Module-level state (reset by initGame) ────────────────────────────────────