Skip to content

Commit 98ff420

Browse files
committed
Fixed issue when importing a mod-list with only NOT subscribed items. Resolves #334.
1 parent 35f5eb7 commit 98ff420

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xcom2-launcher/xcom2-launcher/Forms/MainForm.Events.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@ private void ExportLoadButtonClick(object sender, EventArgs e)
540540
}
541541

542542
// Check entries
543-
if (activeMods.Count == 0)
543+
if (activeMods.Count == 0 && missingMods.Count == 0)
544544
{
545545
MessageBox.Show("No mods found. Bad profile?", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
546546
return;

0 commit comments

Comments
 (0)