From fe6f27172d464d5d4f980d6ffbafdcc2c8371f9c Mon Sep 17 00:00:00 2001 From: goat <16760685+goaaats@users.noreply.github.com> Date: Thu, 30 Sep 2021 22:04:02 +0200 Subject: [PATCH] feat: add "utility" category --- Dalamud/Interface/Internal/PluginCategoryManager.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dalamud/Interface/Internal/PluginCategoryManager.cs b/Dalamud/Interface/Internal/PluginCategoryManager.cs index ff8a583c9..74c2a5b1a 100644 --- a/Dalamud/Interface/Internal/PluginCategoryManager.cs +++ b/Dalamud/Interface/Internal/PluginCategoryManager.cs @@ -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 } }