mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Merge pull request #667 from erri120/issue-666
LOOT configs are no longer Base64 encoded
This commit is contained in:
commit
c5ed06968a
@ -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)
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user