LOOT configs are no longer Base64 encoded

This commit is contained in:
erri120 2020-04-02 17:24:02 +02:00
parent 386cb247c6
commit eaa9336aa1
No known key found for this signature in database
GPG Key ID: A8C0A18D8D4D3135
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;
}