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