From 3c245ce25330e6775caabc97560728f0eee91428 Mon Sep 17 00:00:00 2001 From: goat <16760685+goaaats@users.noreply.github.com> Date: Thu, 28 Oct 2021 01:40:36 +0200 Subject: [PATCH] rename Troubleshooting key --- Dalamud/Support/Troubleshooting.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dalamud/Support/Troubleshooting.cs b/Dalamud/Support/Troubleshooting.cs index 2ba9be696..8034bb979 100644 --- a/Dalamud/Support/Troubleshooting.cs +++ b/Dalamud/Support/Troubleshooting.cs @@ -74,7 +74,7 @@ namespace Dalamud.Support DoPluginTest = configuration.DoPluginTest, InterfaceLoaded = interfaceManager?.IsReady ?? false, ThirdRepo = configuration.ThirdRepoList, - ForcedCoreHook = EnvironmentConfiguration.DalamudForceMinHook, + ForcedMinHook = EnvironmentConfiguration.DalamudForceMinHook, }; var encodedPayload = Convert.ToBase64String(Encoding.UTF8.GetBytes(JsonConvert.SerializeObject(payload))); @@ -113,7 +113,7 @@ namespace Dalamud.Support public bool InterfaceLoaded { get; set; } - public bool ForcedCoreHook { get; set; } + public bool ForcedMinHook { get; set; } public List ThirdRepo { get; set; } }