Skip to content

Commit

Permalink
Adjust warcraft faction data (#3377)
Browse files Browse the repository at this point in the history
* adjust warcraft faction data

* add 'm' as faction
  • Loading branch information
hjpalpha authored Oct 14, 2023
1 parent 93e87ae commit 4c9a48e
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions components/faction/wikis/warcraft/faction_data.lua
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,20 @@ local factionProps = {
pageName = 'Orc',
faction = 'o',
},
n = {
bgClass = 'warcraft-nightelf',
index = 3,
name = 'Nightelf',
pageName = 'Nightelf',
faction = 'n',
},
u = {
bgClass = 'warcraft-undead',
index = 4,
index = 3,
name = 'Undead',
pageName = 'Undead',
faction = 'u',
},
n = {
bgClass = 'warcraft-nightelf',
index = 4,
name = 'Night Elf',
pageName = 'Night Elf',
faction = 'n',
},
r = {
bgClass = 'Random',
index = 5,
Expand All @@ -59,8 +59,8 @@ local factionProps = {
return {
factionProps = factionProps,
defaultFaction = 'a',
factions = {'h', 'o', 'n', 'u', 'r', 'a'},
knownFactions = {'h', 'o', 'n', 'u', 'r'},
coreFactions = {'h', 'o', 'n', 'u'},
aliases = {['night elf'] = 'n'},
factions = {'h', 'o', 'u', 'n', 'r', 'm', 'a'},
knownFactions = {'h', 'o', 'u', 'n', 'r'},
coreFactions = {'h', 'o', 'u', 'n'},
aliases = {['nightelf'] = 'n'},
}

0 comments on commit 4c9a48e

Please sign in to comment.