We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ModID:
1 parent b0dd55a commit 7c289feCopy full SHA for 7c289fe
steam/items.go
@@ -47,6 +47,8 @@ func (w *WorkshopItem) Parse() *ParsedWorkshopItem {
47
line = strings.TrimSpace(line)
48
if strings.HasPrefix(line, "Mod ID: ") {
49
mods = append(mods, strings.TrimPrefix(line, "Mod ID: "))
50
+ } else if strings.HasPrefix(line, "ModID: ") {
51
+ mods = append(mods, strings.TrimPrefix(line, "ModID: "))
52
} else if strings.HasPrefix(line, "Map Folder: ") {
53
maps = append(maps, strings.TrimPrefix(line, "Map Folder: "))
54
}
0 commit comments