Merge pull request #667 from erri120/issue-666

LOOT configs are no longer Base64 encoded
This commit is contained in:
Timothy Baldridge 2020-04-03 06:43:11 -06:00 committed by GitHub
commit c5ed06968a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
### Changelog
#### Version - Next
* Included LOOT configs are no longer Base64 encoded
#### Version - 3/30/2020
* Added support for Morrowind on GOG
* Fix a bug in the Author file uploader (Sync Error)

View File

@ -18,7 +18,7 @@ namespace Wabbajack.Lib.CompilationSteps
{
if (!source.Path.StartsWith(_prefix)) return null;
var result = source.EvolveTo<InlineFile>();
result.SourceDataID = _compiler.IncludeFile(File.ReadAllBytes(source.AbsolutePath).ToBase64());
result.SourceDataID = _compiler.IncludeFile(File.ReadAllBytes(source.AbsolutePath));
return result;
}