Skip to content

Commit

Permalink
fix: use the right keys for the difficulties
Browse files Browse the repository at this point in the history
  • Loading branch information
zeevallin committed Dec 19, 2020
1 parent 1fce3e5 commit af66175
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions Modules/RaidData.lua
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
-- Raid difficulties define what different kind of raid difficulties exists.
RAID_DIFFICULTIES = {
["R"] = "Raid Finder",
["N"] = "Normal",
["H"] = "Heroic",
["M"] = "Mythic"
["RAIDFINDER"] = "Raid Finder",
["NORMAL"] = "Normal",
["HEROIC"] = "Heroic",
["MYTHIC"] = "Mythic"
}

-- Raid instances is a map of raid instances, their encounters and their difficulties.
Expand All @@ -15,52 +15,52 @@ RAID_INSTANCES = {
{
id = "2418",
name = "Huntsman Altimor",
difficulties = {"R", "N", "H", "M"}
difficulties = {"RAIDFINDER", "NORMAL", "HEROIC", "MYTHIC"}
},
{
id = "2417",
name = "Stone Legion Generals",
difficulties = {"R", "N", "H", "M"}
difficulties = {"RAIDFINDER", "NORMAL", "HEROIC", "MYTHIC"}
},
{
id = "2412",
name = "The Council of Blood",
difficulties = {"R", "N", "H", "M"}
difficulties = {"RAIDFINDER", "NORMAL", "HEROIC", "MYTHIC"}
},
{
id = "2407",
name = "Sire Denathrius",
difficulties = {"R", "N", "H", "M"}
difficulties = {"RAIDFINDER", "NORMAL", "HEROIC", "MYTHIC"}
},
{
id = "2406",
name = "Lady Inerva Darkvein",
difficulties = {"R", "N", "H", "M"}
difficulties = {"RAIDFINDER", "NORMAL", "HEROIC", "MYTHIC"}
},
{
id = "2405",
name = "Artificer Xy'mox",
difficulties = {"R", "N", "H", "M"}
difficulties = {"RAIDFINDER", "NORMAL", "HEROIC", "MYTHIC"}
},
{
id = "2402",
name = "Sun King's Salvation",
difficulties = {"R", "N", "H", "M"}
difficulties = {"RAIDFINDER", "NORMAL", "HEROIC", "MYTHIC"}
},
{
id = "2399",
name = "Sludgefist",
difficulties = {"R", "N", "H", "M"}
difficulties = {"RAIDFINDER", "NORMAL", "HEROIC", "MYTHIC"}
},
{
id = "2398",
name = "Shriekwing",
difficulties = {"R", "N", "H", "M"}
difficulties = {"RAIDFINDER", "NORMAL", "HEROIC", "MYTHIC"}
},
{
id = "2383",
name = "Hungering Destroyer",
difficulties = {"R", "N", "H", "M"}
difficulties = {"RAIDFINDER", "NORMAL", "HEROIC", "MYTHIC"}
}
}
}
Expand Down

0 comments on commit af66175

Please sign in to comment.