diff --git a/Core/ModuleInstaller.cs b/Core/ModuleInstaller.cs index 8ab7a4990..36e988754 100644 --- a/Core/ModuleInstaller.cs +++ b/Core/ModuleInstaller.cs @@ -1623,8 +1623,8 @@ public static bool FindRecommendations(GameInstance var opts = RelationshipResolverOptions.DependsOnlyOpts(); supporters = resolver.Supporters(recommenders, - toInstall.Concat(recommendations.Keys) - .Concat(suggestions.Keys)) + recommenders.Concat(recommendations.Keys) + .Concat(suggestions.Keys)) .Where(kvp => CanInstall(toInstall.Append(kvp.Key).ToList(), opts, registry, instance.game, crit)) .ToDictionary();