diff --git a/src/parsers.rs b/src/parsers.rs index 9a9bca8..b98e727 100644 --- a/src/parsers.rs +++ b/src/parsers.rs @@ -94,7 +94,7 @@ fn multimc_in_onedrive_managed_folder(log: &str) -> Option<(&str, String)> { static ref RE: Regex = Regex::new(r"Minecraft folder is:\nC:/.+/.+/OneDrive").unwrap(); } if RE.is_match(log) { - Some(("❗", "MultiMC is located in a folder managed by OneDrive. OneDrive messes with Minecraft folders while the game is running, and this often leads to crashes.\nYou should move MultiMC to a different folder.".to_string())) + Some(("❗", "MultiMC is located in a folder managed by OneDrive. OneDrive messes with Minecraft folders while the game is running, and this often leads to crashes.\nYou should move the MultiMC folder to a different folder.".to_string())) } else { None }