Skip to content

Commit

Permalink
launch: fix launch on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
BrettMayson committed Dec 18, 2024
1 parent 65cb4e0 commit 823ca0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/src/commands/launch/launcher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ impl Launcher {
continue;
}
let mod_path = workshop_folder.join(load_mod);
if !mod_path.exists() {
if !mod_path.exists() && (cfg!(windows) || !mod_path.starts_with("Z:")) {
report.push(WorkshopModNotFound::code(load_mod.to_string()));
};
if cfg!(windows) {
Expand Down

0 comments on commit 823ca0e

Please sign in to comment.