mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Default compression to off
This commit is contained in:
parent
e14501afdf
commit
aaa2275032
@ -36,8 +36,6 @@ namespace Wabbajack.VirtualFileSystem
|
||||
if (source.Extension == Consts.OMOD)
|
||||
return await ExtractAllWithOMOD(source);
|
||||
|
||||
Utils.Log($"Extracting {sig}");
|
||||
|
||||
switch (sig)
|
||||
{
|
||||
case Definitions.FileType.BSA:
|
||||
|
@ -105,7 +105,7 @@ namespace Wabbajack
|
||||
private bool _isPersistent = true;
|
||||
public bool IsPersistent { get => _isPersistent; set => RaiseAndSetIfChanged(ref _isPersistent, value); }
|
||||
|
||||
private bool _useCompression = true;
|
||||
private bool _useCompression = false;
|
||||
public bool UseCompression { get => _useCompression; set => RaiseAndSetIfChanged(ref _useCompression, value); }
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user