Skip to content
Open
Changes from all commits
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
8 changes: 7 additions & 1 deletion Knossos.NET/Models/Nebula.cs
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,13 @@ private static bool IsModUpdate(Mod mod)
//Remove Installed and FS2 parent mods if FS2 root pack is not detected, Mark update available to installed ones, set installed ones as inNebula
foreach (var m in modsTcs.ToList())
{

//Do not load mods that belong to the new DLC system now.
//TODO: Remove for next version
if (m.parent == "DLC" || m.id == "DLC")
{
modsTcs.Remove(m);
continue;
}
if (listFS2Override || ( m.parent != "FS2" || m.parent == "FS2" && Knossos.retailFs2RootFound ))
{
//This is already installed?
Expand Down