Don't show legendary Legion items as disenchantable

This commit is contained in:
Parnic
2016-10-11 14:27:37 -05:00
parent 9a4714e599
commit 6dbd396b87

View File

@ -1173,7 +1173,7 @@ function Breakables:BreakableIsDisenchantable(itemType, itemLevel, itemRarity)
-- account for WoD and higher no longer needing specific ilvl. numbers from http://wow.gamepedia.com/Item_level
if (itemRarity == RARITY_UNCOMMON and itemLevel >= 483)
or (itemRarity == RARITY_RARE and itemLevel >= 515)
or (itemRarity >= RARITY_EPIC and itemLevel >= 640) then
or (itemRarity == RARITY_EPIC and itemLevel >= 640) then
return true
end