diff options
author | 0neGal <mail@0negal.com> | 2022-05-30 21:53:41 +0200 |
---|---|---|
committer | 0neGal <mail@0negal.com> | 2022-05-30 21:53:41 +0200 |
commit | 7ddfd200abad2de370d49f6a58862a71c148111d (patch) | |
tree | 39cdb07eaf4badc7f5391b55a55cfac6500e57b2 /src/extras | |
parent | 992f747c5cd93b4fd8c5e27c3bd24766c5875a5c (diff) | |
download | Viper-7ddfd200abad2de370d49f6a58862a71c148111d.tar.gz Viper-7ddfd200abad2de370d49f6a58862a71c148111d.zip |
fixed missing commas and various syntax stuff
I know, commas aren't needed, however, going in and out of using commas
and not using them also looks bad, so generally I try to always use
them, with exceptions.
Diffstat (limited to 'src/extras')
-rw-r--r-- | src/extras/findgame.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/extras/findgame.js b/src/extras/findgame.js index 3beca23..615c5b4 100644 --- a/src/extras/findgame.js +++ b/src/extras/findgame.js @@ -38,13 +38,13 @@ module.exports = async () => { // `.length - 1` This is because the last value is `contentstatsid` for (let i = 0; i < values.length; i++) { - let data_array = Object.values(values[i]) + let data_array = Object.values(values[i]); if (fs.existsSync(data_array[0] + "/steamapps/common/Titanfall2/Titanfall2.exe")) { - console.log("Found game in:", data_array[0]) + console.log("Found game in:", data_array[0]); return data_array[0] + "/steamapps/common/Titanfall2"; } else { - console.log("Game not in:", data_array[0]) + console.log("Game not in:", data_array[0]); } } } @@ -69,10 +69,10 @@ module.exports = async () => { if (folders.length > 0) { for (let i = 0; i < folders.length; i++) { if (! fs.existsSync(folders[i])) {continue} - console.log("Searching VDF file at:", folders[i]) + console.log("Searching VDF file at:", folders[i]); - let data = fs.readFileSync(folders[i]) - let read_vdf = readvdf(data.toString()) + let data = fs.readFileSync(folders[i]); + let read_vdf = readvdf(data.toString()); if (read_vdf) {return read_vdf} } } |