We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b340ce2 commit 697d186Copy full SHA for 697d186
main.lua
@@ -205,7 +205,7 @@ function DialogKey:OnGossipFrameUpdate(GossipFrame)
205
if tag then
206
if self.db.numKeysForGossip then
207
local oldText = data.info[tag]
208
- if (FlagsUtil.IsSet(data.info.flags, Enum.GossipOptionRecFlags.QuestLabelPrepend)) then
+ if data.info.flags and FlagsUtil.IsSet(data.info.flags, Enum.GossipOptionRecFlags.QuestLabelPrepend) then
209
oldText = GOSSIP_QUEST_OPTION_PREPEND:format(oldText);
210
end
211
local newText = (n % 10) .. ". " .. (oldText:match("^%d. (.+)$") or oldText)
0 commit comments