diff --git a/Frontend/ParadoxConverters.Frontend/Frontend.Core/Converting/Operations/ExtractSave/ZipFileHelper.cs b/Frontend/ParadoxConverters.Frontend/Frontend.Core/Converting/Operations/ExtractSave/ZipFileHelper.cs index 86683adb6..8fc95b3ca 100644 --- a/Frontend/ParadoxConverters.Frontend/Frontend.Core/Converting/Operations/ExtractSave/ZipFileHelper.cs +++ b/Frontend/ParadoxConverters.Frontend/Frontend.Core/Converting/Operations/ExtractSave/ZipFileHelper.cs @@ -28,6 +28,11 @@ public void ExtractFile(string sourceArchiveName, string fileToExtract, string d var zip = zipFileProxy.Open(sourceArchiveName, ZipArchiveMode.Read); var zipFileEntry = zip.Entries.FirstOrDefault(entry => entry.FullName.Equals(fileToExtract)); + if (zipFileEntry == null) + { + zipFileEntry = zip.Entries.FirstOrDefault(entry => entry.FullName.Equals("game.eu4")); + } + if (zipFileEntry == null) { throw new FileNotFoundInArchiveException();