From 151ca5cc858a3007dde292a4fbd1bf6f35b20126 Mon Sep 17 00:00:00 2001 From: Raymond Date: Tue, 24 Aug 2021 10:26:50 -0400 Subject: [PATCH] Make things compile --- Dalamud/Game/Gui/PartyFinder/Types/PartyFinderListing.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dalamud/Game/Gui/PartyFinder/Types/PartyFinderListing.cs b/Dalamud/Game/Gui/PartyFinder/Types/PartyFinderListing.cs index a02f63ed6..c03a2dfcd 100644 --- a/Dalamud/Game/Gui/PartyFinder/Types/PartyFinderListing.cs +++ b/Dalamud/Game/Gui/PartyFinder/Types/PartyFinderListing.cs @@ -157,7 +157,7 @@ namespace Dalamud.Game.Gui.PartyFinder.Types /// /// Gets the conditions of this listing. /// - public PartyFinderConditionFlags Conditions => (PartyFinderConditionFlags)this.conditions; + public ConditionFlags Conditions => (ConditionFlags)this.conditions; /// /// Gets the Duty Finder settings that will be used for this listing. @@ -199,7 +199,7 @@ namespace Dalamud.Game.Gui.PartyFinder.Types /// /// The flag to check for. /// A value indicating whether the flag is present. - public bool this[PartyFinderConditionFlags flag] => this.conditions == 0 || (this.conditions & (uint)flag) > 0; + public bool this[ConditionFlags flag] => this.conditions == 0 || (this.conditions & (uint)flag) > 0; /// /// Check if the given flag is present.