Bug fixes, Framework update, General changes to accommodate new systems.

This commit is contained in:
Tercio Jose
2024-02-26 14:12:11 -03:00
parent 483d9c6976
commit 32adc61608
34 changed files with 1801 additions and 524 deletions
@@ -769,7 +769,7 @@ function mythicDungeonFrames.ShowEndOfMythicPlusPanel()
local lootSquare = unitBanner.LootSquare
lootSquare.itemLink = itemLink
local effectiveILvl = GetDetailedItemLevelInfo(itemLink)
local effectiveILvl, nop, baseItemLevel = GetDetailedItemLevelInfo(itemLink)
local itemName, itemLink, itemQuality, itemLevel, itemMinLevel, itemType, itemSubType,
itemStackCount, itemEquipLoc, itemTexture, sellPrice, classID, subclassID, bindType,
@@ -777,7 +777,7 @@ function mythicDungeonFrames.ShowEndOfMythicPlusPanel()
--print("equip loc:", itemEquipLoc)
if (effectiveILvl > 300) then --avoid showing loot that isn't items
if (effectiveILvl > 300 and baseItemLevel > 5) then --avoid showing loot that isn't items
local rarityColor = ITEM_QUALITY_COLORS[itemQuality]
lootSquare.LootIconBorder:SetVertexColor(rarityColor.r, rarityColor.g, rarityColor.b, 1)