diff --git a/ImperatorToCK3/Imperator/World.cs b/ImperatorToCK3/Imperator/World.cs index 4277aacb0..0ddbd64cb 100644 --- a/ImperatorToCK3/Imperator/World.cs +++ b/ImperatorToCK3/Imperator/World.cs @@ -160,7 +160,8 @@ private void LaunchImperatorToExportCountryFlags(Configuration config) { string imperatorBinaryName = OperatingSystem.IsWindows() ? "imperator.exe" : "imperator"; var imperatorBinaryPath = Path.Combine(config.ImperatorPath, "binaries", imperatorBinaryName); if (!File.Exists(imperatorBinaryPath)) { - Logger.Error("Imperator binary not found! Aborting!"); + Logger.Warn("Imperator binary not found! Aborting the random CoA extraction!"); + return; } string dataTypesLogPath = Path.Combine(config.ImperatorDocPath, "logs/data_types.log");