Comment out Dependencies field for Modrinth versions (fixes #56)

This commit is contained in:
comp500 2021-09-30 22:48:45 +01:00
parent d7851bd7fd
commit 48adf3ffb1

View File

@ -104,9 +104,9 @@ type Version struct {
Downloads int `json:"downloads"` //The number of downloads this specific version has Downloads int `json:"downloads"` //The number of downloads this specific version has
VersionType string `json:"version_type"` //The type of the release - alpha, beta, or release VersionType string `json:"version_type"` //The type of the release - alpha, beta, or release
Files []VersionFile `json:"files"` //A list of files available for download for this version Files []VersionFile `json:"files"` //A list of files available for download for this version
Dependencies []string `json:"dependencies"` //A list of specific versions of mods that this version depends on //Dependencies []string `json:"dependencies"` //A list of specific versions of mods that this version depends on
GameVersions []string `json:"game_versions"` //A list of versions of Minecraft that this version of the mod supports GameVersions []string `json:"game_versions"` //A list of versions of Minecraft that this version of the mod supports
Loaders []string `json:"loaders"` //The mod loaders that this version supports Loaders []string `json:"loaders"` //The mod loaders that this version supports
} }
type VersionFile struct { type VersionFile struct {