Fix DLC required not being marked right (#801)

* Update index.ts

* Fix Vio's Mod
This commit is contained in:
Ben C 2023-12-29 18:06:48 -05:00 committed by GitHub
parent 564809a126
commit bfb18ac3fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 4 deletions

View File

@ -2681,9 +2681,8 @@
"uniqueName": "VioVayo.GlowyBraceletMod",
"repo": "VioVayo/OWGlowstickBracelets",
"tags": [
"content",
"requires-dlc"
"content"
]
}
]
}
}

View File

@ -85,7 +85,7 @@ async function run() {
newMod.tags = tags.split(", ");
}
if (dlc) {
if (dlc === "DLC Required") {
newMod.tags.push("requires-dlc");
}