diff options
author | Rémy Raes <contact@remyraes.com> | 2022-10-03 16:06:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-03 16:06:46 +0200 |
commit | 43d61ce21507d63c82c2252a164d314a18968359 (patch) | |
tree | 4b40eaf5a51767ab115cd93bbe77e986c89d0bea /src-vue/src/plugins/store.ts | |
parent | 9690e5efe7c8a02c86bd68f32906c1b2f731897b (diff) | |
parent | b09138a7f97559f2c59d240f882f16ec08d4934c (diff) | |
download | FlightCore-43d61ce21507d63c82c2252a164d314a18968359.tar.gz FlightCore-43d61ce21507d63c82c2252a164d314a18968359.zip |
Merge pull request #5 from GeckoEidechse/null-out-gamepath
Start with empty gamepath and set button accordingly if no Titanfall2 install found
Diffstat (limited to 'src-vue/src/plugins/store.ts')
-rw-r--r-- | src-vue/src/plugins/store.ts | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src-vue/src/plugins/store.ts b/src-vue/src/plugins/store.ts index 544d314a..5087221b 100644 --- a/src-vue/src/plugins/store.ts +++ b/src-vue/src/plugins/store.ts @@ -28,11 +28,11 @@ export const store = createStore({ return { current_tab: Tabs.PLAY, developer_mode: false, - game_path: "this/is/the/game/path", + game_path: undefined, install_type: undefined, installed_northstar_version: "", - northstar_state: NorthstarState.INSTALL, + northstar_state: NorthstarState.GAME_NOT_FOUND, release_canal: ReleaseCanal.RELEASE, northstar_is_running: false, @@ -190,4 +190,7 @@ async function _get_northstar_version_number(state: any) { alert(error); }); } + else { + state.northstar_state = NorthstarState.INSTALL; + } } |