diff --git a/Dalamud/Game/ClientState/ClientState.cs b/Dalamud/Game/ClientState/ClientState.cs index 4ab69b3911..956989fbbf 100644 --- a/Dalamud/Game/ClientState/ClientState.cs +++ b/Dalamud/Game/ClientState/ClientState.cs @@ -195,7 +195,6 @@ private unsafe void SetupTerritoryTypeDetour(EventFramework* eventFramework, ush if (isPvP != this.IsPvP) { this.IsPvP = isPvP; - this.IsPvPExcludingDen = this.IsPvP && this.TerritoryType != 250; if (this.IsPvP) { @@ -208,6 +207,8 @@ private unsafe void SetupTerritoryTypeDetour(EventFramework* eventFramework, ush this.LeavePvP?.InvokeSafely(); } } + + this.IsPvPExcludingDen = this.IsPvP && this.TerritoryType != 250; } this.setupTerritoryTypeHook.Original(eventFramework, territoryType);