From 4df7e1db5c613536497ec6262120993ad9170f5e Mon Sep 17 00:00:00 2001 From: goat <16760685+goaaats@users.noreply.github.com> Date: Thu, 14 Jul 2022 19:55:42 +0200 Subject: [PATCH] chore: fix LoadAllApiLevels access in Troubleshooting --- Dalamud/Support/Troubleshooting.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Support/Troubleshooting.cs b/Dalamud/Support/Troubleshooting.cs index f0927683b..17f15de94 100644 --- a/Dalamud/Support/Troubleshooting.cs +++ b/Dalamud/Support/Troubleshooting.cs @@ -74,7 +74,7 @@ namespace Dalamud.Support Language = startInfo.Language.ToString(), BetaKey = configuration.DalamudBetaKey, DoPluginTest = configuration.DoPluginTest, - LoadAllApiLevels = configuration.LoadAllApiLevels, + LoadAllApiLevels = pluginManager?.LoadAllApiLevels == true, InterfaceLoaded = interfaceManager?.IsReady ?? false, HasThirdRepo = configuration.ThirdRepoList is { Count: > 0 }, ForcedMinHook = EnvironmentConfiguration.DalamudForceMinHook,