Fix FO3/FNV/LE BSA file paths with special characters getting corrupted when packed into BSAs

This commit is contained in:
trawzified 2024-08-11 23:13:43 +02:00
parent c3e8621de6
commit dfeec6b235

View File

@ -23,6 +23,7 @@ public static class BinaryHelperExtensions
return version switch
{
VersionType.TES3 => Encoding.ASCII,
VersionType.FO3 => Encoding.UTF8,
VersionType.SSE => Windows1252,
_ => Encoding.UTF7
};