From b85ebe21399a864455caf52329f7da35ba144f78 Mon Sep 17 00:00:00 2001 From: AL <26797547+Al12rs@users.noreply.github.com> Date: Thu, 3 Oct 2024 11:22:03 +0200 Subject: [PATCH] Enable BG3 as supported game --- src/NexusMods.App/Services.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NexusMods.App/Services.cs b/src/NexusMods.App/Services.cs index 5745bf6d6f..6f1e0f74b6 100644 --- a/src/NexusMods.App/Services.cs +++ b/src/NexusMods.App/Services.cs @@ -126,11 +126,11 @@ private static IServiceCollection AddSupportedGames(this IServiceCollection serv { if (experimentalSettings is { EnableAllGames: true }) { - services.AddBaldursGate3(); } Games.RedEngine.Services.AddRedEngineGames(services); Games.StardewValley.Services.AddStardewValley(services); + Games.Larian.BaldursGate3.Services.AddBaldursGate3(services); return services; } }