From c2fe4cb5a23359cb621a31d1f0ce317141f8fdde Mon Sep 17 00:00:00 2001 From: Paul Hebble Date: Thu, 21 Nov 2024 15:17:10 -0600 Subject: [PATCH] Exclude dependencies in the changeset from supported by list --- Core/ModuleInstaller.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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();