diff --git a/NetMFAPatcher/Utils/Decryption.cs b/NetMFAPatcher/Utils/Decryption.cs index 95279a1..2784cac 100644 --- a/NetMFAPatcher/Utils/Decryption.cs +++ b/NetMFAPatcher/Utils/Decryption.cs @@ -50,7 +50,7 @@ namespace DotNetCTFDumper.Utils uint decompressedSize = reader.ReadUInt32(); byte[] rawData = reader.ReadBytes((int) reader.Size()); - if ((chunkId & 1) == 1) + if ((chunkId & 1) == 1&&Settings.Build>284) { rawData[0] ^= (byte) ((byte) (chunkId & 0xFF) ^ (byte) (chunkId >> 0x8)); }