From b43a6b6bce2e5b9b25c89fa5ba74a87241b9dd46 Mon Sep 17 00:00:00 2001 From: Kaz Wolfe Date: Fri, 15 Nov 2024 08:24:04 -0800 Subject: [PATCH] fix: OnLogin needs to be callable again --- Dalamud/Game/ClientState/ClientState.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dalamud/Game/ClientState/ClientState.cs b/Dalamud/Game/ClientState/ClientState.cs index 5f22eb54b..1fade54b6 100644 --- a/Dalamud/Game/ClientState/ClientState.cs +++ b/Dalamud/Game/ClientState/ClientState.cs @@ -22,6 +22,8 @@ using FFXIVClientStructs.FFXIV.Client.UI.Agent; using Lumina.Excel.Sheets; +using TerraFX.Interop.Windows; + using Action = System.Action; namespace Dalamud.Game.ClientState; @@ -309,6 +311,7 @@ internal sealed class ClientState : IInternalDisposableService, IClientState } gameGui?.ResetUiHideState(); + this.lastConditionNone = true; // unblock login flag this.lifecycle.SetLogout(); }