Fix detection of logs which fail to start mc process

This commit is contained in:
TheKodeToad 2024-10-19 21:06:54 +01:00
parent 20db2b4fde
commit 39186a1f67
No known key found for this signature in database
GPG key ID: 5E39D70B4C93C38E

View file

@ -34,7 +34,7 @@ fn looks_like_game_log(log: &str) -> bool {
trace!("Guessing whether log is Minecraft log");
if log.contains("Minecraft process ID: ") {
if log.contains("Prism Launcher version: ") || log.contains("Minecraft process ID: ") {
return true;
}