mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Merge branch 'net5' of github.com:goatcorp/Dalamud into net5
This commit is contained in:
commit
f653aab237
2 changed files with 10 additions and 3 deletions
|
|
@ -11,16 +11,22 @@ namespace Dalamud.Game.Gui.PartyFinder.Types
|
|||
/// <summary>
|
||||
/// No duty condition.
|
||||
/// </summary>
|
||||
None = 1,
|
||||
None = 1 << 0,
|
||||
|
||||
/// <summary>
|
||||
/// The duty complete condition.
|
||||
/// </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>
|
||||
/// The duty incomplete condition.
|
||||
/// </summary>
|
||||
DutyIncomplete = 4,
|
||||
DutyIncomplete = 1 << 2,
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
using Dalamud.Configuration.Internal;
|
||||
using Serilog;
|
||||
|
||||
namespace Dalamud.Game.Internal
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue