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.