diff --git a/Wabbajack.Lib/ACompiler.cs b/Wabbajack.Lib/ACompiler.cs index 06654835..45f2d445 100644 --- a/Wabbajack.Lib/ACompiler.cs +++ b/Wabbajack.Lib/ACompiler.cs @@ -42,9 +42,9 @@ namespace Wabbajack.Lib public bool IgnoreMissingFiles { get; set; } - public readonly List SelectedArchives = new List(); - public readonly List InstallDirectives = new List(); - public readonly List AllFiles = new List(); + public List SelectedArchives { get; protected set; } = new List(); + public List InstallDirectives { get; protected set; } = new List(); + public List AllFiles { get; protected set; } = new List(); public ModList ModList = new ModList(); public List IndexedArchives = new List(); diff --git a/Wabbajack.Lib/MO2Compiler.cs b/Wabbajack.Lib/MO2Compiler.cs index e79ea68a..69b1546b 100644 --- a/Wabbajack.Lib/MO2Compiler.cs +++ b/Wabbajack.Lib/MO2Compiler.cs @@ -53,7 +53,7 @@ namespace Wabbajack.Lib public AbsolutePath MO2ProfileDir => MO2Folder.Combine("profiles", MO2Profile); - public ConcurrentBag ExtraFiles { get; } = new ConcurrentBag(); + public ConcurrentBag ExtraFiles { get; private set; } = new ConcurrentBag(); public Dictionary ModInis { get; } = new Dictionary(); public HashSet SelectedProfiles { get; set; } = new HashSet(); @@ -409,10 +409,10 @@ namespace Wabbajack.Lib /// private void ResetMembers() { - AllFiles.Clear(); - InstallDirectives.Clear(); - SelectedArchives.Clear(); - ExtraFiles.Clear(); + AllFiles = new List(); + InstallDirectives = new List(); + SelectedArchives = new List(); + ExtraFiles = new ConcurrentBag(); } ///