Rundenzeiten auf 15/30/60 Sekunden ändern

This commit is contained in:
2026-05-31 17:29:46 +02:00
parent aceb783584
commit 83c36d2052
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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'