diff --git a/OpenRA.Game/FileSystem/ZipFile.cs b/OpenRA.Game/FileSystem/ZipFile.cs index a1db5c1604..aef7cdee3c 100644 --- a/OpenRA.Game/FileSystem/ZipFile.cs +++ b/OpenRA.Game/FileSystem/ZipFile.cs @@ -55,7 +55,8 @@ namespace OpenRA.FileSystem get { foreach (ZipEntry entry in pkg) - yield return entry.Name; + if (entry.IsFile) + yield return entry.Name; } }