Skip to content

Commit

Permalink
fix #813
Browse files Browse the repository at this point in the history
  • Loading branch information
BrettMayson committed Oct 22, 2024
1 parent 5cd4feb commit bdcdc74
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion bin/src/commands/launch/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,11 @@ pub fn execute(matches: &ArgMatches) -> Result<Report, Error> {
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() {
Expand Down

0 comments on commit bdcdc74

Please sign in to comment.