From 366552e33cc8d2a7848d12201e49d622a76ec88b Mon Sep 17 00:00:00 2001 From: EzioTheDeadPoet <52624146+EzioTheDeadPoet@users.noreply.github.com> Date: Sat, 5 Sep 2020 20:18:55 +0200 Subject: [PATCH] adding "installed=true" to .meta files with this change ModOrganizer2 will display Archives downloaded with Wabbajack as installed instead of just downloaded, since to be included during the compile they need to be used in the install in the first place. --- Wabbajack.Lib/Downloaders/AbstractDownloadState.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wabbajack.Lib/Downloaders/AbstractDownloadState.cs b/Wabbajack.Lib/Downloaders/AbstractDownloadState.cs index eba6cd1f..8134aa9a 100644 --- a/Wabbajack.Lib/Downloaders/AbstractDownloadState.cs +++ b/Wabbajack.Lib/Downloaders/AbstractDownloadState.cs @@ -100,7 +100,7 @@ namespace Wabbajack.Lib.Downloaders public string GetMetaIniString() { - return $"{string.Join("\n", GetMetaIni())} installed=true"; + return $"{string.Join("\n", GetMetaIni())}\ninstalled=true"; } public async Task<(Archive? Archive, TempFile NewFile)> ServerFindUpgrade(Archive a)