Skip to content

Commit

Permalink
[core] add support for Earthen characters (WoWAnalyzer#7021)
Browse files Browse the repository at this point in the history
  • Loading branch information
ToppleTheNun authored Sep 12, 2024
1 parent cf1a1b0 commit 6e29705
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/CHANGELOG.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ import SpellLink from 'interface/SpellLink';

// prettier-ignore
export default [
change(date(2024, 9, 12), 'Add support for Earthen characters.', ToppleTheNun),
change(date(2024, 9, 10), 'Change behavior of getLowestPerf when no perfs are provided', Trevor),
change(date(2024, 9, 9), 'Fix character search showing UNKNOWN instead of THE WAR WITHIN.', ToppleTheNun),
change(date(2024, 9, 8), "Add Nerub'ar Palace bosses and season 1 M+ dungeons.", ToppleTheNun),
Expand Down
10 changes: 10 additions & 0 deletions src/game/RACES.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,16 @@ const RACES: {
side: 'horde',
name: 'Dracthyr',
},
EarthenHorde: {
id: 84,
name: 'Earthen',
side: 'horde',
},
EarthenAlliance: {
id: 85,
name: 'Earthen',
side: 'alliance',
},
};

export default RACES;

0 comments on commit 6e29705

Please sign in to comment.