fix(honkai): fixed launcher pup-up on game launching

This commit is contained in:
Observer KRypt0n_ 2023-04-16 22:31:25 +02:00
parent 76a38c5753
commit b1255ff965
No known key found for this signature in database
GPG key ID: 844DA47BA25FE1E2

View file

@ -209,7 +209,7 @@ pub fn run() -> anyhow::Result<()> {
let output = Command::new("ps").arg("-A").stdout(Stdio::piped()).output()?;
let output = String::from_utf8_lossy(&output.stdout);
if !output.contains("GenshinImpact.e") && !output.contains("unlocker.exe") {
if !output.contains("BH3.exe") {
break;
}
}