diff options
| author | 2026-01-16 12:56:47 +0000 | |
|---|---|---|
| committer | 2026-01-16 12:56:47 +0000 | |
| commit | e6de034475c8cdaef4a65d04dad7c626805d2ffc (patch) | |
| tree | a0ec697a79af355816fe1551e565a706363dc3cb /ui/src/stores/game.svelte.ts | |
| parent | fd4d01a629105d9405a6cecb2a1efd3ffa6a9334 (diff) | |
| download | DropOut-e6de034475c8cdaef4a65d04dad7c626805d2ffc.tar.gz DropOut-e6de034475c8cdaef4a65d04dad7c626805d2ffc.zip | |
style: auto format and lint fix [skip ci]
Diffstat (limited to 'ui/src/stores/game.svelte.ts')
| -rw-r--r-- | ui/src/stores/game.svelte.ts | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ui/src/stores/game.svelte.ts b/ui/src/stores/game.svelte.ts index 3efcf71..1e4119f 100644 --- a/ui/src/stores/game.svelte.ts +++ b/ui/src/stores/game.svelte.ts @@ -42,7 +42,12 @@ export class GameState { } uiState.setStatus("Preparing to launch " + this.selectedVersion + "..."); - console.log("Invoking start_game for version:", this.selectedVersion, "instance:", instancesState.activeInstanceId); + console.log( + "Invoking start_game for version:", + this.selectedVersion, + "instance:", + instancesState.activeInstanceId, + ); try { const msg = await invoke<string>("start_game", { instanceId: instancesState.activeInstanceId, |