diff --git a/src/ui/start.vue b/src/ui/start.vue index 9dbf9df..ed01399 100644 --- a/src/ui/start.vue +++ b/src/ui/start.vue @@ -131,7 +131,7 @@ async function clickStartButton(id: string) { if (id === 'easy' || id === 'hard-hard') { start.style.opacity = '0'; await sleep(600); - core.startGame(id); + core.startGame(id === 'easy' ? 'easy' : 'hard'); } if (id === 'load-game') { core.dom.gameGroup.style.display = 'block';