diff --git a/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs b/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs index 7d1fd7cb0..8f0d1a7d2 100644 --- a/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs +++ b/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs @@ -330,12 +330,12 @@ namespace Dalamud.Interface.Internal.Windows.PluginInstaller throw new ArgumentOutOfRangeException(); } - if (DateTime.Now - this.timeLoaded > TimeSpan.FromMinutes(2) && isWaitingManager) + if (DateTime.Now - this.timeLoaded > TimeSpan.FromSeconds(90) && isWaitingManager) { ImGui.PushStyleColor(ImGuiCol.Text, ImGuiColors.DalamudRed); ImGuiHelpers.CenteredText("This is embarrassing, but..."); ImGuiHelpers.CenteredText("one of your plugins may be blocking the installer."); - ImGuiHelpers.CenteredText("You should tell us about this."); + ImGuiHelpers.CenteredText("You should tell us about this, please keep this window open."); ImGui.PopStyleColor(); }