Merge branch 'master' into inspect-ilvl

This commit is contained in:
Andrew Tomaka 2021-02-21 14:37:46 -05:00
commit 7265c6f489
Signed by: atomaka
GPG key ID: 61209BF70A5B18BE

View file

@ -34,6 +34,10 @@ MyAddon.taunts = {
[1161] = true, -- Challenging Shout
[204079] = true -- Final Stand
}
MyAddon.slots = {
"HeadSlot", "ShoulderSlot", "ChestSlot", "WristSlot", "HandsSlot",
"WaistSlot", "LegsSlot", "FeetSlot", "MainHandSlot", "SecondaryHandSlot"
}
inspectInitialized = false
local InspectFontStrings = {}
@ -170,13 +174,8 @@ function MyAddon.activateGoliath()
end
function MyAddon.needsRepair()
local slots = {
"HeadSlot", "ShoulderSlot", "ChestSlot", "WristSlot", "HandsSlot",
"WaistSlot", "LegsSlot", "FeetSlot", "MainHandSlot", "SecondaryHandSlot"
}
for slot = 1, #slots do
local id = GetInventorySlotInfo(slots[slot])
for slot = 1, #MyAddon.slots do
local id = GetInventorySlotInfo(MyAddon.slots[slot])
local cur, max = GetInventoryItemDurability(id)
if max and cur ~= max then return true end