From 8a80875b6829342650b7b3116a18f43d03a9425d Mon Sep 17 00:00:00 2001 From: scientificworld Date: Sat, 3 Jan 2026 12:07:51 +0800 Subject: [PATCH] fix: append -> concat --- ArcFormats/Enigma/ArcEVB.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArcFormats/Enigma/ArcEVB.cs b/ArcFormats/Enigma/ArcEVB.cs index b6f59356..7fd06cdc 100644 --- a/ArcFormats/Enigma/ArcEVB.cs +++ b/ArcFormats/Enigma/ArcEVB.cs @@ -72,7 +72,7 @@ namespace GameRes.Formats.Enigma { index_offset++; counts[counts.Count - 1]--; if (type == NodeTypes.File) { - var entry = Create(Path.Combine(names.Append(name).ToArray())); + var entry = Create(Path.Combine(names.Concat(new[] { name }).ToArray())); uint unpacked_size = file.View.ReadUInt32(index_offset + 2); uint size = file.View.ReadUInt32(index_offset + 49); if (unpacked_size != size)