Skip to content

Commit

Permalink
add stupid patcher check
Browse files Browse the repository at this point in the history
  • Loading branch information
Wyvest committed Jun 24, 2024
1 parent 1ae443c commit 10e97db
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ class UpdateChecker {
// update to mod id loop
for (localMod in installedMods) {
for (repoMod in latestMods) {
if (repoMod.internalId == "polypatcher") continue // lol i gotta fix this
if (repoMod.internalId == "patcher" && localMod.file.name.contains("polypatcher", ignoreCase = true)) continue // lol i gotta fix this
if(checkModId(localMod, repoMod) && repoMod.updateToIds.isNotEmpty()) {
for (updateToId in repoMod.updateToIds) {
// mark the mod as updated
Expand Down

0 comments on commit 10e97db

Please sign in to comment.