diff --git a/README.md b/README.md index 65dcc70..bb2f7c4 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Für jede Zielzahl wird sichtbar, wie weit das Kind in den letzten fünf Runden ## Funktionsumfang - Zielzahlen 4 bis 10, einzeln auswählbar -- Rundenzeit einstellbar (30 / 60 / 90 / 120 Sekunden) +- Rundenzeit einstellbar (15 / 30 / 60 Sekunden) - Sound an/aus über Lautsprecher-Knopf - Highscore-Anzeige je Zielzahl mit Krone für die beste Runde - Läuft offline und kann als App installiert werden (PWA) diff --git a/src/lib/stores/settings.ts b/src/lib/stores/settings.ts index 482dc61..088884b 100644 --- a/src/lib/stores/settings.ts +++ b/src/lib/stores/settings.ts @@ -1,7 +1,7 @@ import { writable } from 'svelte/store'; import { loadSettings, saveSettings, type Settings } from '../game/persistence'; -export const ROUND_SECONDS_OPTIONS = [30, 60, 90, 120] as const; +export const ROUND_SECONDS_OPTIONS = [15, 30, 60] as const; const initial: Settings = typeof window === 'undefined'