feat: add "utility" category

This commit is contained in:
goat 2021-09-30 22:04:02 +02:00
parent 5bdb7d4903
commit fe6f27172d
No known key found for this signature in database
GPG key ID: F18F057873895461

View file

@ -28,6 +28,7 @@ namespace Dalamud.Interface.Internal
new(FirstTagBasedCategoryId + 4, "inventory", () => Locs.Category_Inventory),
new(FirstTagBasedCategoryId + 5, "sound", () => Locs.Category_Sound),
new(FirstTagBasedCategoryId + 6, "social", () => Locs.Category_Social),
new(FirstTagBasedCategoryId + 7, "utility", () => Locs.Category_Utility),
// order doesn't matter, all tag driven categories should have Id >= FirstTagBasedCategoryId
};
@ -379,6 +380,8 @@ namespace Dalamud.Interface.Internal
public static string Category_Social => Loc.Localize("InstallerCategorySocial", "Social");
public static string Category_Utility => Loc.Localize("InstallerCategoryUtility", "Utiliry");
#endregion
}
}