Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions MPF.Frontend/Tools/ProtectionTool.cs
Original file line number Diff line number Diff line change
Expand Up @@ -637,6 +637,12 @@ public static string SanitizeFoundProtections(List<string> foundProtections)
foundProtections = foundProtections.FindAll(p => p != "StarForce");
}
}

if (foundProtections.Exists(p => p.StartsWith("StarForce Keyless")))
{
foundProtections = foundProtections.FindAll(p => !p.StartsWith("StarForce Keyless"));
foundProtections.Add("StarForce Keyless");
}

// Sysiphus
if (foundProtections.Exists(p => p == "Sysiphus")
Expand Down