View Single Post
05-09-14, 06:13 PM   #12
Mazzop
A Cliff Giant
AddOn Author - Click to view addons
Join Date: Dec 2011
Posts: 74
ive just changed

local _, item, quantity, quality = GetLootSlotInfo(i)
if quality >= 4 then

into

local _, item, quantity, quality = GetLootSlotInfo(i)
if item ~= GetItemInfo(74248) and quality >= 4 then

my lil addon will need rewrite in WoD anyway so i think then
  Reply With Quote