From d6910418928d856fb9e12670715c203657f99dda Mon Sep 17 00:00:00 2001 From: Paletz Date: Sat, 23 May 2026 01:10:18 +0200 Subject: [PATCH] Do not confuse anti-cheat runtimes with Proton --- crates/lens-client/src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/crates/lens-client/src/lib.rs b/crates/lens-client/src/lib.rs index 59d0093..9b866d3 100644 --- a/crates/lens-client/src/lib.rs +++ b/crates/lens-client/src/lib.rs @@ -65,6 +65,10 @@ pub fn start_lens_server(config: Value) -> Result { if !name.starts_with("Proton ") { continue; } + // Do not confuse anti-cheat runtimes with Proton + if name.contains("Runtime") { + continue; + } candidates.push((name.to_owned(), file_name)) } // Try to find latest version by semverish comparison