fix: items that are begin quest

This commit is contained in:
Salikh Gurgenidze
2025-12-22 04:25:42 +04:00
parent 9dad4c62d9
commit 2e0d7a69e1
+7 -7
View File
@@ -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