From e153e73e77c67e539a35e31b3aa6bb9f299dd8fa Mon Sep 17 00:00:00 2001 From: goaaats Date: Sun, 8 Jan 2023 00:35:04 +0100 Subject: [PATCH] fix: don't show punchline if a plugin is troublesome --- .../Internal/Windows/PluginInstaller/PluginInstallerWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs b/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs index 17358646e..f305a722d 100644 --- a/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs +++ b/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs @@ -1629,7 +1629,7 @@ internal class PluginInstallerWindow : Window, IDisposable ImGui.SetCursorPosX(cursor.X); // Description - if (plugin is null or { IsOutdated: false, IsBanned: false }) + if (plugin is null or { IsOutdated: false, IsBanned: false } && !trouble) { if (!string.IsNullOrWhiteSpace(manifest.Punchline)) {