From fccb5815decce6257b8f04cb842a40d6d02110e7 Mon Sep 17 00:00:00 2001 From: 0neGal Date: Tue, 28 Dec 2021 17:08:00 +0100 Subject: removed settings.file We now just use a fixed string ("viper.json") --- src/utils.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/utils.js') diff --git a/src/utils.js b/src/utils.js index a5cb461..85ce5ce 100644 --- a/src/utils.js +++ b/src/utils.js @@ -16,7 +16,6 @@ process.chdir(app.getPath("appData")); var settings = { gamepath: "", - file: "viper.json", zip: "/northstar.zip", excludes: [ "ns_startup_args.txt", @@ -24,8 +23,8 @@ var settings = { ] } -if (fs.existsSync(settings.file)) { - settings = {...settings, ...JSON.parse(fs.readFileSync(settings.file, "utf8"))}; +if (fs.existsSync("viper.json")) { + settings = {...settings, ...JSON.parse(fs.readFileSync("viper.json", "utf8"))}; settings.zip = path.join(settings.gamepath + "/northstar.zip"); } else { console.log("Game path is not set! Please select the path."); -- cgit v1.2.3