Skip to content

Commit

Permalink
Export a mod's workshop url when exporting to the text file format
Browse files Browse the repository at this point in the history
  • Loading branch information
LaughingLeader committed Sep 1, 2020
1 parent b992896 commit 4f09475
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2492,7 +2492,7 @@ private void ExportLoadOrderToTextFileAs()
else
{
//Text file format
outputText = String.Join("\n", ActiveMods.Select(x => $"{x.Index}. {x.Name} ({x.OutputPakName})"));
outputText = String.Join("\n", ActiveMods.Select(x => $"{x.Index}. {x.Name} ({x.OutputPakName}) {x.GetURL()}"));
}
try
{
Expand Down

0 comments on commit 4f09475

Please sign in to comment.