From 94998b65e4edf52bdf0e9793ad62bdbc29e0934f Mon Sep 17 00:00:00 2001 From: pot0to Date: Sun, 3 Jul 2022 12:51:51 -0700 Subject: [PATCH 1/2] adding pf condition "duty complete (weekly reward unclaimed)" (#907) --- Dalamud/Game/Gui/PartyFinder/Types/ConditionFlags.cs | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/Dalamud/Game/Gui/PartyFinder/Types/ConditionFlags.cs b/Dalamud/Game/Gui/PartyFinder/Types/ConditionFlags.cs index 3eb5ec1b6..50f59426e 100644 --- a/Dalamud/Game/Gui/PartyFinder/Types/ConditionFlags.cs +++ b/Dalamud/Game/Gui/PartyFinder/Types/ConditionFlags.cs @@ -11,16 +11,22 @@ namespace Dalamud.Game.Gui.PartyFinder.Types /// /// No duty condition. /// - None = 1, + None = 1 << 0, /// /// The duty complete condition. /// - DutyComplete = 2, + DutyComplete = 1 << 1, + + /// + /// The duty complete (weekly reward unclaimed) condition. This condition is + /// only available for savage fights prior to echo release. + /// + DutyCompleteWeeklyRewardUnclaimed = 1 << 3, /// /// The duty incomplete condition. /// - DutyIncomplete = 4, + DutyIncomplete = 1 << 2, } } From c07780c5ffb937cf6f4dcf5c5b8d0c3e1029d949 Mon Sep 17 00:00:00 2001 From: Aireil <33433913+Aireil@users.noreply.github.com> Date: Tue, 5 Jul 2022 21:25:56 +0200 Subject: [PATCH 2/2] fix: add using back to AntiDebug (#908) --- Dalamud/Game/Internal/AntiDebug.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Dalamud/Game/Internal/AntiDebug.cs b/Dalamud/Game/Internal/AntiDebug.cs index fd7569aed..aaecfe4b1 100644 --- a/Dalamud/Game/Internal/AntiDebug.cs +++ b/Dalamud/Game/Internal/AntiDebug.cs @@ -1,6 +1,7 @@ using System; using System.Collections.Generic; +using Dalamud.Configuration.Internal; using Serilog; namespace Dalamud.Game.Internal