From fae98fa26ade5bc08e3fa7badbcf2c2e9dbd904f Mon Sep 17 00:00:00 2001 From: AtmoOmen <110901588+AtmoOmen@users.noreply.github.com> Date: Mon, 12 Jan 2026 20:10:24 +0800 Subject: [PATCH] Change seenLogMessageObjects to HashSet for efficiency --- Dalamud/Game/Gui/ChatGui.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Game/Gui/ChatGui.cs b/Dalamud/Game/Gui/ChatGui.cs index c514752da..00fdd0d6a 100644 --- a/Dalamud/Game/Gui/ChatGui.cs +++ b/Dalamud/Game/Gui/ChatGui.cs @@ -42,7 +42,7 @@ internal sealed unsafe class ChatGui : IInternalDisposableService, IChatGui private readonly Queue chatQueue = new(); private readonly Dictionary<(string PluginName, uint CommandId), Action> dalamudLinkHandlers = []; - private readonly List seenLogMessageObjects = []; + private readonly HashSet seenLogMessageObjects = []; private readonly Hook printMessageHook; private readonly Hook inventoryItemCopyHook;