WoWInterface SVN DressToKill

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /trunk
    from Rev 22 to Rev 23
    Reverse comparison

Rev 22 → Rev 23

DressToKill.lua
361,6 → 361,10
self.equipped = false
debug(L["Clearing item since we lack dual wielding skill"])
ClearCursor()
elseif event == "UI_ERROR_MESSAGE" and arg1 == LEVEL_TOO_LOW then
self.equipped = false
debug(L["Clearing item that we're too low to equip"])
ClearCursor()
end
 
local thread = DressToKill.currentThread
447,10 → 451,13
[0x400] = 3,
[0x800] = 4,
}
 
function DressToKill:ItemInBank(mask)
if bit.band(mask, ITEM_INVENTORY_BANK) > 0 then
end
end
 
function DressToKill:ItemInBag(mask)
if not mask then
debug(debugstack())
end
if bit.band(mask, ITEM_INVENTORY_BAGS) > 0 then
local bag = bagMap[bit.band(mask, MASK_BAG)]
local slot = bit.band(mask, MASK_SLOT)