From 885e18bc89502882d07b6175f6d1bc5e397c9834 Mon Sep 17 00:00:00 2001 From: Timothy Baldridge Date: Sun, 24 Nov 2019 14:36:26 -0700 Subject: [PATCH] Disable free space checking, it didn't work like I wanted, too much trouble to maintain for now. --- Wabbajack.Lib/AInstaller.cs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Wabbajack.Lib/AInstaller.cs b/Wabbajack.Lib/AInstaller.cs index 57524384..e8703251 100644 --- a/Wabbajack.Lib/AInstaller.cs +++ b/Wabbajack.Lib/AInstaller.cs @@ -283,9 +283,15 @@ namespace Wabbajack.Lib .ToDictionary(e => e.Item1, e => e.Item2); } + /// + /// Disabled + /// public void ValidateFreeSpace() { - DiskSpaceInfo DriveInfo(string path) + return; + // Disabled, caused more problems than it was worth. + /* + DiskSpaceInfo DriveInfo(string path) { return Volume.GetDiskFreeSpace(Volume.GetUniqueVolumeNameForPath(path)); } @@ -305,7 +311,7 @@ namespace Wabbajack.Lib throw new NotEnoughDiskSpaceException( $"This modlist requires {required.ToFileSizeString()} on {g.Key} but only {available.ToFileSizeString()} is available."); }); - + */ } public int RecommendQueueSize()