Missed some lines for cleanup

This commit is contained in:
Rvng
2021-09-27 16:50:25 -04:00
parent 437c8b973c
commit e5b69faeff
2 changed files with 2 additions and 7 deletions
+1 -4
View File
@@ -1627,7 +1627,6 @@ function QueryItems(instance, difficulty, expansion)
for b = 1, #AtlasLoot_DewDropDown_SubTables[inst] do
local boss = AtlasLoot_DewDropDown_SubTables[inst][b][2];
if(AtlasLoot_Data[boss] ~= nil and AtlasLoot_Data[boss].Type ~= nil and AtlasLoot_Data[boss].Type == instance) then
print("Query for "..boss.." in instance "..inst.." started");
local n = 1;
local querytime = 0;
local now = 0;
@@ -1644,12 +1643,10 @@ function QueryItems(instance, difficulty, expansion)
n = n + 1;
end
end
print("Query for "..boss.." in instance "..inst.." finished");
end
end
elseif AtlasLoot_DewDropDown[_men][ex_sel[expansion]][i][1][3] == "Table" then
if(AtlasLoot_Data[inst] ~= nil and AtlasLoot_Data[inst].Type ~= nil and AtlasLoot_Data[inst].Type == instance) then
print("Query for "..inst.." in instance "..inst.." started");
local n = 1;
local querytime = 0;
local now = 0;
@@ -1666,8 +1663,8 @@ function QueryItems(instance, difficulty, expansion)
n = n + 1;
end
end
print("Query for "..inst.." in instance "..inst.." finished");
end
end
end
print("You may need to reload your UI to finalize the Query")
end
+1 -3
View File
@@ -453,17 +453,15 @@ function AtlasLoot:Search(Text)
local operator = HaveOperator(text);
for dataID, data in pairs(AtlasLoot_Data) do
local queryDifficulties = 1;
local maxDifficulties = 2;
if data.Type ~= nil then
queryDifficulties = 0;
maxDifficulties = 4;
end
for dif = 2, maxDifficulties do
for _, v in ipairs(data) do
local _id = AL_FindId(gsub(v[4], "=q%d=", ""), dif + queryDifficulties) or v[2]
local _id = AL_FindId(gsub(v[4], "=q%d=", ""), dif) or v[2]
if type(_id) == "number" and _id > 0 then
-- Name, Link, Quality(num), iLvl(num), minLvl(num), itemType(localized string), itemSubType(localized string), stackCount(num), itemEquipLoc(enum), texture(link to a local file), displayId(num)
local itemName, _, itemQuality, itemLvl, minLvl, _, _, _, itemEquipLoc = GetItemInfo(_id);