Skip to content

Commit

Permalink
added downloadUrl to manifest
Browse files Browse the repository at this point in the history
Added downloadUrl to the `manifest.json` - The Enigmatica fork of ServerStarter will use that to download mods.
  • Loading branch information
NielsPilgaard committed May 28, 2022
1 parent b32a50e commit fd7d725
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions modpack-uploader.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,10 @@ function New-ManifestJson {
$mods = [System.Collections.ArrayList]@()
foreach ($addon in $minecraftInstanceJson.installedAddons) {
$mods.Add(@{
required = $true
projectID = $addon.addonID
fileID = $addon.installedFile.id
required = $true
projectID = $addon.addonID
fileID = $addon.installedFile.id
downloadUrl = $addon.installedFile.downloadUrl
}) > $null
}

Expand Down

0 comments on commit fd7d725

Please sign in to comment.