From 6765c2c0c60c41c11da9b36adc68f1bafb9a537b Mon Sep 17 00:00:00 2001 From: Anna Clemens Date: Wed, 8 Dec 2021 04:20:18 -0500 Subject: [PATCH] fix: add Reaper and Sage to JobFlags --- Dalamud/Game/Gui/PartyFinder/Types/JobFlags.cs | 10 ++++++++++ .../Game/Gui/PartyFinder/Types/JobFlagsExtensions.cs | 2 ++ 2 files changed, 12 insertions(+) diff --git a/Dalamud/Game/Gui/PartyFinder/Types/JobFlags.cs b/Dalamud/Game/Gui/PartyFinder/Types/JobFlags.cs index 98fa1b1fe..a89398a88 100644 --- a/Dalamud/Game/Gui/PartyFinder/Types/JobFlags.cs +++ b/Dalamud/Game/Gui/PartyFinder/Types/JobFlags.cs @@ -142,5 +142,15 @@ namespace Dalamud.Game.Gui.PartyFinder.Types /// Dancer (DNC). /// Dancer = 1 << 27, + + /// + /// Reaper (RPR). + /// + Reaper = 1 << 28, + + /// + /// Sage (SGE). + /// + Sage = 1 << 29, } } diff --git a/Dalamud/Game/Gui/PartyFinder/Types/JobFlagsExtensions.cs b/Dalamud/Game/Gui/PartyFinder/Types/JobFlagsExtensions.cs index 3bb80d0f5..c39822eb7 100644 --- a/Dalamud/Game/Gui/PartyFinder/Types/JobFlagsExtensions.cs +++ b/Dalamud/Game/Gui/PartyFinder/Types/JobFlagsExtensions.cs @@ -49,6 +49,8 @@ namespace Dalamud.Game.Gui.PartyFinder.Types JobFlags.BlueMage => 36, JobFlags.Gunbreaker => 37, JobFlags.Dancer => 38, + JobFlags.Reaper => 39, + JobFlags.Sage => 40, _ => null, };