diff --git a/OpenRA.Game/Manifest.cs b/OpenRA.Game/Manifest.cs index d35432d9a8..9b16e47264 100644 --- a/OpenRA.Game/Manifest.cs +++ b/OpenRA.Game/Manifest.cs @@ -189,6 +189,9 @@ namespace OpenRA var ret = new Dictionary(); foreach (var mod in mods) { + if (!File.Exists(Platform.ResolvePath(".", "mods", mod, "mod.yaml"))) + continue; + try { var manifest = new Manifest(mod);