Skip to content

Commit

Permalink
Add Phase 4 raids
Browse files Browse the repository at this point in the history
Somehow I forgot to add them
  • Loading branch information
cloudbells committed Jul 28, 2024
1 parent 0e55b27 commit b3381b7
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 7 deletions.
23 changes: 17 additions & 6 deletions Instances.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
local _, ns = ...

if ns:IsSoD() then
ns.RAIDS = {[48] = "Blackfathom Deeps", [90] = "Gnomeregan", [109] = "Sunken Temple"}
ns.RAIDS = {
[48] = "Blackfathom Deeps",
[90] = "Gnomeregan",
[109] = "Sunken Temple",
[509] = "AQ20",
[531] = "AQ40",
[469] = "Blackwing Lair",
[409] = "Molten Core",
[533] = "Naxxramas",
[249] = "Onyxia's Lair",
[309] = "Zul'Gurub"
}
elseif ns:IsClassic() then
ns.RAIDS = {
[509] = "AQ20",
Expand All @@ -10,7 +21,7 @@ elseif ns:IsClassic() then
[409] = "Molten Core",
[533] = "Naxxramas",
[249] = "Onyxia's Lair",
[309] = "Zul'Gurub",
[309] = "Zul'Gurub"
}
elseif ns:IsTBC() then
ns.RAIDS = {
Expand All @@ -29,7 +40,7 @@ elseif ns:IsTBC() then
[534] = "Battle for Mount Hyjal",
[564] = "Black Temple",
[568] = "Zul'Aman",
[580] = "Sunwell Plateau",
[580] = "Sunwell Plateau"
}
ns.DUNGEONS = {
[269] = "The Black Morass",
Expand All @@ -47,7 +58,7 @@ elseif ns:IsTBC() then
[557] = "Mana-Tombs",
[558] = "Auchenai Crypts",
[560] = "Old Hillsbrad Foothills",
[585] = "Magisters' Terrace",
[585] = "Magisters' Terrace"
}
elseif ns:IsWOTLK() then
ns.RAIDS = {
Expand All @@ -73,7 +84,7 @@ elseif ns:IsWOTLK() then
[649] = "Trial of the Crusader",
[249] = "Onyxia's Lair",
[631] = "Icecrown Citadel",
[724] = "Ruby Sanctum",
[724] = "Ruby Sanctum"
}
ns.DUNGEONS = {
[269] = "The Black Morass",
Expand Down Expand Up @@ -107,6 +118,6 @@ elseif ns:IsWOTLK() then
[632] = "The Forge of Souls",
[650] = "Trial of the Champion",
[658] = "Pit of Saron",
[668] = "Halls of Reflection",
[668] = "Halls of Reflection"
}
end
2 changes: 1 addition & 1 deletion Interface/Main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ function ns:InitMainFrame()
tinsert(UISpecialFrames, "AutoLoggerClassicFrame")

if ns:IsSoD() then
mainFrame:SetSize(552, 72)
mainFrame:SetSize(552, 132)
elseif ns:IsClassic() then
mainFrame:SetSize(540, 112)
elseif ns:IsWOTLK() or ns:IsTBC() then
Expand Down

0 comments on commit b3381b7

Please sign in to comment.