* update to release 7.3.1

* minor tweaks

- tweaked the drop location text to display a bit more cleanly
- added boss sigils to bc raid tables
- added right click context menu to boss name list so you can open db to that boss (only has raids atm)
- the All dungeon items list now wont precache past the normal loot
This commit is contained in:
Anch
2024-02-05 07:03:14 +13:00
committed by GitHub
parent 68b5822ba5
commit ee67fa7627
46 changed files with 489 additions and 47293 deletions
+11 -6
View File
@@ -680,14 +680,19 @@ function AtlasLoot:DoSearch(searchText)
if self.db.profile.SearchOn.All or self.db.profile.SearchOn[data.Module] or (self.db.profile.SearchAscensionVanity and data.Module == "AtlasLoot_Ascension_Vanity") then
for tableNum, t in ipairs(data) do
for _, itemData in pairs(t) do
if itemData.itemID or itemData.spellID then
if data.Type then
itemData.Type = data.Type
if not itemData[self.Difficultys.MAX_DIF] then
itemData[self.Difficultys.MAX_DIF] = #self.Difficultys[data.Type]
if type(itemData) == "table" then
if itemData.itemID or itemData.spellID then
if data.Type then
itemData.Type = data.Type
if not itemData[self.Difficultys.MAX_DIF] then
itemData[self.Difficultys.MAX_DIF] = #self.Difficultys[data.Type]
end
end
if self.db.profile.showdropLocationOnSearch then
itemData.dropLoc = {data.DisplayName or data.Name, t.Name}
end
tinsert(itemList, {{itemData, dataID, tableNum, searchTerms, searchText}})
end
tinsert(itemList, {{itemData, dataID, tableNum, searchTerms, searchText}})
end
end
end