From af6617555c81e4c92dcfbde953c94ffea99d2e9f Mon Sep 17 00:00:00 2001 From: "Zee V. (Philip)" Date: Sat, 19 Dec 2020 22:28:49 +0100 Subject: [PATCH] fix: use the right keys for the difficulties --- Modules/RaidData.lua | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/Modules/RaidData.lua b/Modules/RaidData.lua index 4249e5a..d97b80e 100644 --- a/Modules/RaidData.lua +++ b/Modules/RaidData.lua @@ -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. @@ -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"} } } }