diff options
| -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, |