From 2e0d7a69e124e4161a4309e36467a7a805dcf4a4 Mon Sep 17 00:00:00 2001 From: Salikh Gurgenidze Date: Mon, 22 Dec 2025 04:25:42 +0400 Subject: [PATCH] fix: items that are begin quest --- UI/ItemButton.lua | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/UI/ItemButton.lua b/UI/ItemButton.lua index 275c03b..90ff141 100644 --- a/UI/ItemButton.lua +++ b/UI/ItemButton.lua @@ -53,13 +53,13 @@ local function IsQuestItem(bagID, slotID) if itemCategory == "Quest" or itemType == "Quest" then isQuestItem = true -- For quest items, try a light heuristic to flag starters by name - if itemName and (string.find(itemName, "Note") or - string.find(itemName, "Letter") or - string.find(itemName, "Orders") or - string.find(itemName, "Rune") or - string.find(itemName, "Tablet")) then - isQuestStarter = true - end + --if itemName and (string.find(itemName, "Note") or + -- string.find(itemName, "Letter") or + -- string.find(itemName, "Orders") or + -- string.find(itemName, "Document") or + -- string.find(itemName, "Tablet")) then + -- isQuestStarter = true + --end end end end