From 6dbd396b87b2548fe60c0eb9938d6b25b889592e Mon Sep 17 00:00:00 2001 From: Parnic Date: Tue, 11 Oct 2016 14:27:37 -0500 Subject: [PATCH] Don't show legendary Legion items as disenchantable --- Breakables.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Breakables.lua b/Breakables.lua index 1c69187..062d8f6 100644 --- a/Breakables.lua +++ b/Breakables.lua @@ -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