All ascension flasks are tier 1

This commit is contained in:
andrew6180
2024-06-11 08:21:21 -07:00
parent 436c9cd3df
commit 84364bbe13
+1 -9
View File
@@ -412,15 +412,7 @@ end
function openRaidLib.GetFlaskTierFromAura(auraInfo)
local flaskTable = openRaidLib.GetFlaskInfoBySpellId(auraInfo.spellId)
if (flaskTable) then
local points = auraInfo.points
if (points) then
for i = 1, #points do
local flaskTier = flaskTable.tier[points[i]]
if (flaskTier) then
return flaskTier
end
end
end
return 1
end
return nil
end