From d8660ff7640f27c275e1d57c478148875d8a8381 Mon Sep 17 00:00:00 2001 From: tommadness Date: Sat, 23 Apr 2022 10:41:13 -0400 Subject: [PATCH] Add LoadAllApiLevels to troubleshooting payload (#808) --- Dalamud/Support/Troubleshooting.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dalamud/Support/Troubleshooting.cs b/Dalamud/Support/Troubleshooting.cs index 54ce570a7..369dfd02b 100644 --- a/Dalamud/Support/Troubleshooting.cs +++ b/Dalamud/Support/Troubleshooting.cs @@ -74,6 +74,7 @@ namespace Dalamud.Support Language = startInfo.Language.ToString(), BetaKey = configuration.DalamudBetaKey, DoPluginTest = configuration.DoPluginTest, + LoadAllApiLevels = configuration.LoadAllApiLevels, InterfaceLoaded = interfaceManager?.IsReady ?? false, HasThirdRepo = configuration.ThirdRepoList is { Count: > 0 }, ForcedMinHook = EnvironmentConfiguration.DalamudForceMinHook, @@ -115,6 +116,8 @@ namespace Dalamud.Support public bool DoPluginTest { get; set; } + public bool LoadAllApiLevels { get; set; } + public bool InterfaceLoaded { get; set; } public bool ForcedMinHook { get; set; }