Skip to content

Commit

Permalink
Fixed issue when importing a mod-list with only NOT subscribed items. R…
Browse files Browse the repository at this point in the history
…esolves #334.
  • Loading branch information
RevZero committed Nov 14, 2024
1 parent 35f5eb7 commit 98ff420
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xcom2-launcher/xcom2-launcher/Forms/MainForm.Events.cs
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ private void ExportLoadButtonClick(object sender, EventArgs e)
}

// Check entries
if (activeMods.Count == 0)
if (activeMods.Count == 0 && missingMods.Count == 0)
{
MessageBox.Show("No mods found. Bad profile?", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
return;
Expand Down

0 comments on commit 98ff420

Please sign in to comment.