From 1fbdd7dbeda22d91125d31950e579e3767551de8 Mon Sep 17 00:00:00 2001 From: Salikh Gurgenidze Date: Wed, 24 Dec 2025 03:55:08 +0400 Subject: [PATCH] usable quest item --- UI/QuestItemBar.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/QuestItemBar.lua b/UI/QuestItemBar.lua index 5bd7824..8d8fcfd 100644 --- a/UI/QuestItemBar.lua +++ b/UI/QuestItemBar.lua @@ -39,7 +39,7 @@ local function IsItemUsable(bagID, slotID) if text then local tl = string.lower(text) -- Match explicit usability phrases (case-insensitive). Avoid generic 'quest item' matches. - if string.find(tl, "use:") or string.find(tl, "right%-click") or string.find(tl, "right click") or string.find(tl, "click to") or string.find(tl, "starts a quest") then + if string.find(tl, "use:") or string.find(tl, "begins a quest") or string.find(tl, "starts a quest") then return true end end