Revert "Started Ascension Module"

This reverts commit 3989393178.
This commit is contained in:
merstrax
2021-11-02 21:15:23 -04:00
parent 2e4e3dac2b
commit e1255374b0
7 changed files with 5 additions and 159 deletions
+2 -10
View File
@@ -547,7 +547,7 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame)
if dataID == "FilterList" then
Type = lastType;
else
Type = dataSource[dataID].Type or nil;
Type = dataSource[dataID].Type;
end
if Type ~= lastType then
@@ -1153,8 +1153,6 @@ function AtlasLoot_GetLODModule(dataSource)
return "AtlasLoot_WorldEvents";
elseif (dataSource=="AtlasLootWotLK") then
return "AtlasLoot_WrathoftheLichKing";
elseif(dataSource=="AtlasAscension") then
return "AtlasLoot_Ascension";
end
end
@@ -1163,14 +1161,12 @@ AtlasLoot_LoadAllModules()
Used to load all available LoD modules
]]
function AtlasLoot_LoadAllModules()
local orig, bc, wotlk, craft, world, asc;
local orig, bc, wotlk, craft, world;
orig, _ = LoadAddOn("AtlasLoot_OriginalWoW");
bc, _ = LoadAddOn("AtlasLoot_BurningCrusade");
craft, _ = LoadAddOn("AtlasLoot_Crafting");
world, _ = LoadAddOn("AtlasLoot_WorldEvents");
wotlk, _ = LoadAddOn("AtlasLoot_WrathoftheLichKing");
asc, _ = LoadAddOn("AtlasLoot_Ascension");
local flag=0;
if not orig then
LoadAddOn("AtlasLoot_OriginalWoW");
@@ -1192,10 +1188,6 @@ function AtlasLoot_LoadAllModules()
LoadAddOn("AtlasLoot_WrathoftheLichKing");
flag=1;
end
if not asc then
LoadAddon("AtlasLoot_Ascension");
flag=1;
end
if flag == 1 then
if ATLASLOOT_DEBUGMESSAGES then
DEFAULT_CHAT_FRAME:AddMessage(GREEN..AL["AtlasLoot"]..": "..WHITE..AL["All Available Modules Loaded"]);
-2
View File
@@ -1133,8 +1133,6 @@ function AtlasLoot_FixText(text)
text = gsub(text, "#t10mark#", "|TInterface\\Icons\\ability_paladin_shieldofthetemplar:0|t");
text = gsub(text, "#valentineday#", "|TInterface\\Icons\\inv_valentinescard01:0|t");
text = gsub(text, "#valentineday2#", "|TInterface\\Icons\\inv_jewelry_necklace_43:0|t");
text = gsub(text, "#felsoul#", "|TInterface\\PVPFrame\\PVP-ArenaPoints-Icon:14:14:2:-1|t");
text = gsub(text, "#legcrest#", "|TInterface\\PVPFrame\\PVP-ArenaPoints-Icon:14:14:2:-1|t");
englishFaction, _ = UnitFactionGroup("player")
if englishFaction == "Horde" then
+2 -18
View File
@@ -234,10 +234,10 @@ AtlasLoot_DewDropDown = {
[11] = {
{ "Dungeons:", "WrathKeys", "Table", "Header" },
},
[12] = {
[12] = {
{ BabbleZone["Ahn'kahet: The Old Kingdom"], "Ahnkahet", "Submenu" },
},
[13] = {
[13] = {
{ BabbleZone["Azjol-Nerub"], "AzjolNerub", "Submenu" },
},
[14] = {
@@ -303,16 +303,6 @@ AtlasLoot_DewDropDown = {
[9] = {
{ AL["World Events"], "WORLDEVENTMENU", "Table", "Submenu2Table" },
},
[10] = {
["Ascension"] = {
[1] = {
{ "Events:", "", "", "Header" },
},
[2] = {
{ "Felforged", "Felforged", "Submenu"},
},
},
},
};
AtlasLoot_DewDropDown_SubTables = {
@@ -967,10 +957,4 @@ AtlasLoot_DewDropDown_SubTables = {
{ "", "ICCLichKing" },
{ "", "ICCTrash25Man" },
},
["Felforged"] = {
{"", "SoulRewards"},
{"", "FelProgression"},
{"", "FelHeirloom"},
{"", "LegionCrest"}
},
};
@@ -2413,15 +2413,6 @@ end
AtlasLoot_TableNames["Arena1Weapons2"] = { AL["Arena Season 1 Weapons"], "AtlasLootBurningCrusade" };
AtlasLoot_TableNames["Arena0Weapons1_A"] = { AL["Arena Season 0 Weapons"], "AtlasLootBurningCrusade" };
AtlasLoot_TableNames["Arena0Weapons1_H"] = { AL["Arena Season 0 Weapons"], "AtlasLootBurningCrusade" };
-----------------
--- Ascension ---
-----------------
AtlasLoot_TableNames["SoulRewards"] = { "Soul Rewards", "AtlasLootAscension" };
AtlasLoot_TableNames["FelProgression"] = { "Fel Progression", "AtlasLootAscension" };
AtlasLoot_TableNames["FelHeirloom"] = { "Fel Heirloom", "AtlasLootAscension" };
AtlasLoot_TableNames["LegionCrest"] = { "Legion Crest", "AtlasLootAscension" };
-------------
--- Other ---
-------------