From 77fc349c58caad3fab8bfaf3015203c39a10ddc8 Mon Sep 17 00:00:00 2001 From: goat Date: Wed, 24 May 2023 22:01:49 +0200 Subject: [PATCH] feat: add ever started loading plugins to ts payload --- Dalamud/Support/Troubleshooting.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dalamud/Support/Troubleshooting.cs b/Dalamud/Support/Troubleshooting.cs index be7e5e659..263ae0e60 100644 --- a/Dalamud/Support/Troubleshooting.cs +++ b/Dalamud/Support/Troubleshooting.cs @@ -69,6 +69,7 @@ public static class Troubleshooting { LoadedPlugins = pluginManager?.InstalledPlugins?.Select(x => x.Manifest)?.OrderByDescending(x => x.InternalName).ToArray(), PluginStates = pluginManager?.InstalledPlugins?.ToDictionary(x => x.Manifest.InternalName, x => x.State.ToString()), + EverStartedLoadingPlugins = pluginManager?.InstalledPlugins.Where(x => x.HasEverStartedLoad).Select(x => x.InternalName).ToList(), DalamudVersion = Util.AssemblyVersion, DalamudGitHash = Util.GetGitHash(), GameVersion = startInfo.GameVersion.ToString(), @@ -105,6 +106,8 @@ public static class Troubleshooting public Dictionary? PluginStates { get; set; } + public List? EverStartedLoadingPlugins { get; set; } + public string DalamudVersion { get; set; } public string DalamudGitHash { get; set; }