- Actually fixed True Iron Ore showing up as prospectable.

This commit is contained in:
parnic
2014-12-29 17:16:02 -06:00
parent a41810c663
commit d2154a350a

View File

@ -20,7 +20,7 @@ local AdditionalMillableItems = {
109129,
}
local UnMillableItems = {
local UnProspectableItems = {
109119, -- WoD True Iron Ore
}
@ -946,10 +946,10 @@ function Breakables:FindBreakablesInSlot(bagId, slotId)
end
end
if CanMill and millable then
for i=1,#UnMillableItems do
if UnMillableItems[i] == itemId then
millable = false
if CanProspect and prospectable then
for i=1,#UnProspectableItems do
if UnProspectableItems[i] == itemId then
prospectable = false
end
end
end