Merge branch 'net5' of github.com:goatcorp/Dalamud into net5

This commit is contained in:
goat 2022-07-09 03:15:09 +02:00
commit f653aab237
No known key found for this signature in database
GPG key ID: 7773BB5B43BA52E5
2 changed files with 10 additions and 3 deletions

View file

@ -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,
}
}

View file

@ -1,6 +1,7 @@
using System;
using System.Collections.Generic;
using Dalamud.Configuration.Internal;
using Serilog;
namespace Dalamud.Game.Internal