Add Death Knight to class list

Issue #6 new
Chris created an issue

Localization.lua needs Death Knight added please.

add it after warrior like:

["Warrior"]      = 9,
["Death Knight"] = 10,

in TITAN_GUILD_CLASSINDEX and the other localizations.

and also in the sections for

-- class filter options

for english look for “else” and make it look like:

else
    hordeClassValues = {"All", "Warrior", "Mage", "Rogue", "Druid", "Hunter", "Shaman", "Priest", "Warlock", "Death Knight"};
    hordeClassLabels = {"All", "Warrior", "Mage", "Rogue", "Druid", "Hunter", "Shaman", "Priest", "Warlock", "Death Knight"};
    allianceClassValues = {"All", "Warrior", "Mage", "Rogue", "Druid", "Hunter", "Priest", "Warlock", "Paladin", "Death Knight"};
    allianceClassLabels = {"All", "Warrior", "Mage", "Rogue", "Druid", "Hunter", "Priest", "Warlock", "Paladin", "Death Knight"};
end

Comments (5)

  1. Chris reporter

    Did you add translations for all the locales or just english? If only one it wont help other people they need to fix it themselves for their locale.

  2. Apeloffen

    i allso changed

    else
        hordeClassValues = {"All", "Warrior", "Mage", "Rogue", "Druid", "Hunter", "Shaman", "Priest", "Warlock", "Death Knight"};
        hordeClassLabels = {"All", "Warrior", "Mage", "Rogue", "Druid", "Hunter", "Shaman", "Priest", "Warlock", "Death Knight"};
        allianceClassValues = {"All", "Warrior", "Mage", "Rogue", "Druid", "Hunter", "Priest", "Warlock", "Paladin", "Death Knight"};
        allianceClassLabels = {"All", "Warrior", "Mage", "Rogue", "Druid", "Hunter", "Priest", "Warlock", "Paladin", "Death Knight"};
    end
    

    to

    else
        classListValues = {"All", "Warrior", "Mage", "Rogue", "Druid", "Hunter", "Shaman", "Priest", "Warlock", "Paladin", "Death Knight"};
        classListLabels = {"All", "Warrior", "Mage", "Rogue", "Druid", "Hunter", "Shaman", "Priest", "Warlock", "Paladin", "Death Knight"};
    end
    

    since the old one is for classic vanilla

  3. Log in to comment