mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Make things compile
This commit is contained in:
parent
3562c1dda6
commit
151ca5cc85
1 changed files with 2 additions and 2 deletions
|
|
@ -157,7 +157,7 @@ namespace Dalamud.Game.Gui.PartyFinder.Types
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the conditions of this listing.
|
/// Gets the conditions of this listing.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public PartyFinderConditionFlags Conditions => (PartyFinderConditionFlags)this.conditions;
|
public ConditionFlags Conditions => (ConditionFlags)this.conditions;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the Duty Finder settings that will be used for this listing.
|
/// Gets the Duty Finder settings that will be used for this listing.
|
||||||
|
|
@ -199,7 +199,7 @@ namespace Dalamud.Game.Gui.PartyFinder.Types
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="flag">The flag to check for.</param>
|
/// <param name="flag">The flag to check for.</param>
|
||||||
/// <returns>A value indicating whether the flag is present.</returns>
|
/// <returns>A value indicating whether the flag is present.</returns>
|
||||||
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;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Check if the given flag is present.
|
/// Check if the given flag is present.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue