From 36d87fb14847492ab9492ffb53e58303a15ce41b Mon Sep 17 00:00:00 2001 From: Ottermandias Date: Sun, 30 Jul 2023 13:24:07 +0200 Subject: [PATCH] Add class+job groups and ACN/SMN/SCH to available job groups. --- Glamourer.GameData/GameData.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/Glamourer.GameData/GameData.cs b/Glamourer.GameData/GameData.cs index aa15413..fa77c45 100644 --- a/Glamourer.GameData/GameData.cs +++ b/Glamourer.GameData/GameData.cs @@ -37,6 +37,7 @@ public static class GameData return idx switch { + // Single jobs 91 => true, 92 => true, 96 => true, @@ -53,6 +54,18 @@ public static class GameData 159 => true, 180 => true, 181 => true, + + // Class + Job + 38 => true, + 41 => true, + 44 => true, + 47 => true, + 50 => true, + 53 => true, + 55 => true, + 69 => true, + 68 => true, + 93 => true, _ => false, }; }