Skip to content

Commit

Permalink
fix(flags): races and classes
Browse files Browse the repository at this point in the history
  • Loading branch information
Helias committed Mar 8, 2020
1 parent 681e9af commit b341d1d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
1 change: 1 addition & 0 deletions src/app/shared/constants/flags/allowable-classes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@ export const ALLOWABLE_CLASSES: Flag[] = [
{ bit: 6, name: 'Shaman' },
{ bit: 7, name: 'Mage' },
{ bit: 8, name: 'Warlock' },
{ bit: 9, name: 'UNUSUED' },
{ bit: 10, name: 'Druid' },
];
21 changes: 11 additions & 10 deletions src/app/shared/constants/flags/allowable-races.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
import { Flag } from '../../types/general';

export const ALLOWABLE_RACES: Flag[] = [
{ bit: 0, name: 'Human' },
{ bit: 1, name: 'Orc' },
{ bit: 2, name: 'Dwarf' },
{ bit: 3, name: 'Night Elf' },
{ bit: 4, name: 'Undead' },
{ bit: 5, name: 'Tauren' },
{ bit: 6, name: 'Gnome' },
{ bit: 7, name: 'Troll' },
{ bit: 9, name: 'Blood Elf' },
{ bit: 10, name: 'Draenei' },
{ bit: 0, name: 'Human' },
{ bit: 1, name: 'Orc' },
{ bit: 2, name: 'Dwarf' },
{ bit: 3, name: 'Night Elf' },
{ bit: 4, name: 'Undead' },
{ bit: 5, name: 'Tauren' },
{ bit: 6, name: 'Gnome' },
{ bit: 7, name: 'Troll' },
{ bit: 8, name: 'Goblin (UNUSUED)' },
{ bit: 9, name: 'Blood Elf' },
{ bit: 10, name: 'Draenei' },
];

0 comments on commit b341d1d

Please sign in to comment.