diff --git a/bin/src/commands/launch/mod.rs b/bin/src/commands/launch/mod.rs index 8a9e5a6c3..9217ed8b4 100644 --- a/bin/src/commands/launch/mod.rs +++ b/bin/src/commands/launch/mod.rs @@ -218,7 +218,11 @@ pub fn execute(matches: &ArgMatches) -> Result { if !mod_path.exists() { report.push(WorkshopModNotFound::code(load_mod)); }; - mods.push(mod_path.display().to_string()); + if cfg!(windows) { + mods.push(mod_path.display().to_string()); + } else { + mods.push(format!("Z:{}", mod_path.display())); + } } } if report.failed() {