From dd0dd3bc3110aaa6bcd086c3b2da4da99762a858 Mon Sep 17 00:00:00 2001 From: NoM0Re Date: Tue, 1 Apr 2025 08:26:23 +0200 Subject: [PATCH] (fix/spec) feral locale --- WeakAuras/Types.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/WeakAuras/Types.lua b/WeakAuras/Types.lua index b619267..2c7ccfe 100644 --- a/WeakAuras/Types.lua +++ b/WeakAuras/Types.lua @@ -3303,7 +3303,7 @@ do icon = "Interface\\Icons\\Ability_Druid_Maul", specs = { [102] = { name = L["Balance"], icon = "Interface\\Icons\\Spell_Nature_StarFall" }, - [103] = { name = L["Feral"], icon = "Interface\\Icons\\Ability_Racial_BearForm" }, + [103] = { name = L["Feral Combat"], icon = "Interface\\Icons\\Ability_Racial_BearForm" }, [104] = { name = L["Guardian"], icon = "Interface\\Icons\\Ability_Racial_BearForm" }, [105] = { name = L["Restoration"], icon = "Interface\\Icons\\Spell_Nature_HealingTouch" }, } @@ -3432,7 +3432,7 @@ Private.specname_to_id = { ["DEATHKNIGHT" .. L["Frost"]] = 251, ["DEATHKNIGHT" .. L["Unholy"]] = 252, ["DRUID" .. L["Balance"]] = 102, - ["DRUID" .. L["Feral"]] = 103, + ["DRUID" .. L["Feral Combat"]] = 103, ["DRUID" .. L["Guardian"]] = 104, ["DRUID" .. L["Restoration"]] = 105, ["HUNTER" .. L["Beast Mastery"]] = 253, @@ -3466,7 +3466,7 @@ Private.specid_to_name = { [251] = "DEATHKNIGHT" .. L["Frost"], [252] = "DEATHKNIGHT" .. L["Unholy"], [102] = "DRUID" .. L["Balance"], - [103] = "DRUID" .. L["Feral"], + [103] = "DRUID" .. L["Feral Combat"], [104] = "DRUID" .. L["Guardian"], [105] = "DRUID" .. L["Restoration"], [253] = "HUNTER" .. L["Beast Mastery"],