mirror of
https://github.com/packwiz/packwiz.git
synced 2025-11-19 01:24:32 +01:00
Eradicate variable-size integer types where not used by interface or as index (fixes #107)
This commit is contained in:
@@ -17,10 +17,10 @@ type twitchInstalledPackMeta struct {
|
||||
} `json:"baseModLoader"`
|
||||
ModpackOverrides []string `json:"modpackOverrides"`
|
||||
ModsInternal []struct {
|
||||
ID int `json:"addonID"`
|
||||
ID uint32 `json:"addonID"`
|
||||
File struct {
|
||||
// I've given up on using this cached data, just going to re-request it
|
||||
ID int `json:"id"`
|
||||
ID uint32 `json:"id"`
|
||||
// Used to determine if the mod is optional-disabled
|
||||
FileNameOnDisk string
|
||||
} `json:"installedFile"`
|
||||
|
||||
Reference in New Issue
Block a user