diff options
author | Alystrasz <contact@remyraes.com> | 2022-01-11 16:15:50 +0100 |
---|---|---|
committer | Alystrasz <contact@remyraes.com> | 2022-01-11 16:15:50 +0100 |
commit | 6017ba7c3e73dba077b7ac4d4de392705f92c505 (patch) | |
tree | 4049d08699263d03d44025ed9f27bf4d87c1f7bd | |
parent | b32ad187349b55f36b95ebf8a476c77a65c2af36 (diff) | |
download | Viper-6017ba7c3e73dba077b7ac4d4de392705f92c505.tar.gz Viper-6017ba7c3e73dba077b7ac4d4de392705f92c505.zip |
[fix] not checking for NorthstarLauncher2.exe process anymore
-rw-r--r-- | src/utils.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils.js b/src/utils.js index a0ce010..7256444 100644 --- a/src/utils.js +++ b/src/utils.js @@ -38,7 +38,7 @@ if (fs.existsSync("viper.json")) { async function _isGameRunning() { return new Promise(resolve => { - let procs = ["Titanfall2.exe", "Titanfall2-unpacked.exe", "NorthstarLauncher2.exe"]; + let procs = ["Titanfall2.exe", "Titanfall2-unpacked.exe", "NorthstarLauncher.exe"]; let cmd = (() => { switch (process.platform) { case "linux": return "ps -A"; |