From 4f094759664625a7bbb2c272b21e981f03d7bb73 Mon Sep 17 00:00:00 2001 From: LaughingLeader Date: Mon, 31 Aug 2020 21:08:32 -0500 Subject: [PATCH] Export a mod's workshop url when exporting to the text file format --- DivinityModManagerGUI_WPF/ViewModels/MainWindowViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DivinityModManagerGUI_WPF/ViewModels/MainWindowViewModel.cs b/DivinityModManagerGUI_WPF/ViewModels/MainWindowViewModel.cs index b0f0bf1d..388937d0 100644 --- a/DivinityModManagerGUI_WPF/ViewModels/MainWindowViewModel.cs +++ b/DivinityModManagerGUI_WPF/ViewModels/MainWindowViewModel.cs @@ -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 {