From ee537d8863780bca4a30df5bb124666f47a2ed41 Mon Sep 17 00:00:00 2001 From: RSS90 Date: Thu, 2 May 2024 15:55:38 +0200 Subject: [PATCH] Rarity search extended up to heirloom --- TradeSkillMaster_Shopping/sidebar/CustomFilter.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TradeSkillMaster_Shopping/sidebar/CustomFilter.lua b/TradeSkillMaster_Shopping/sidebar/CustomFilter.lua index f2ecbe2..5f2260d 100644 --- a/TradeSkillMaster_Shopping/sidebar/CustomFilter.lua +++ b/TradeSkillMaster_Shopping/sidebar/CustomFilter.lua @@ -106,7 +106,7 @@ function private.Create(parent) -- row 6 - rarity y = y + 60 local rarityList = {} - for i = 1, 6 do tinsert(rarityList, _G["ITEM_QUALITY"..i.."_DESC"]) end + for i = 1, 7 do tinsert(rarityList, _G["ITEM_QUALITY"..i.."_DESC"]) end local rarityDropdown = TSMAPI.GUI:CreateDropdown(frame, rarityList, "") rarityDropdown:SetLabel(L["Minimum Rarity"]) rarityDropdown:SetPoint("TOPLEFT", 5, -y)