diff --git a/File_Format_Library/FileFormats/Texture/NUTEXB.cs b/File_Format_Library/FileFormats/Texture/NUTEXB.cs index 8b6927bd..d7fa5dbf 100644 --- a/File_Format_Library/FileFormats/Texture/NUTEXB.cs +++ b/File_Format_Library/FileFormats/Texture/NUTEXB.cs @@ -309,7 +309,7 @@ namespace FirstPlugin List data = new List(); foreach (var array in tex.Texture.TextureData) - data.Add(array[0]); + data.Add(Utils.CombineByteArray(array.ToArray())); var output = Utils.CombineByteArray(data.ToArray()); ImageData = SetImageData(output);