Make installed message use mod name

This commit is contained in:
Ben C 2023-02-14 14:07:36 -05:00
parent a9921fb707
commit 412fe38565

View File

@ -188,7 +188,10 @@ fn extract_mod_zip(
}
}
progress.finish(&format!("Installed {}", zip_name));
let mod_name = read_local_mod(log, &target_path.join("manifest.json"))?
.manifest
.name;
progress.finish(&format!("Installed {}", mod_name));
Ok(())
}