mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-22 16:39:19 +01:00
adding pf condition "duty complete (weekly reward unclaimed)" (#907)
This commit is contained in:
parent
ce8e088044
commit
94998b65e4
1 changed files with 9 additions and 3 deletions
|
|
@ -11,16 +11,22 @@ namespace Dalamud.Game.Gui.PartyFinder.Types
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// No duty condition.
|
/// No duty condition.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
None = 1,
|
None = 1 << 0,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The duty complete condition.
|
/// The duty complete condition.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
DutyComplete = 2,
|
DutyComplete = 1 << 1,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The duty complete (weekly reward unclaimed) condition. This condition is
|
||||||
|
/// only available for savage fights prior to echo release.
|
||||||
|
/// </summary>
|
||||||
|
DutyCompleteWeeklyRewardUnclaimed = 1 << 3,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The duty incomplete condition.
|
/// The duty incomplete condition.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
DutyIncomplete = 4,
|
DutyIncomplete = 1 << 2,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue