From f028779539729b020db142a8062f5c586fa9f7c0 Mon Sep 17 00:00:00 2001 From: Casey Raethke Date: Thu, 18 May 2023 11:30:13 -0500 Subject: [PATCH] Improve compatibility with some hidden tooltip scanners --- RatingBuster.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RatingBuster.lua b/RatingBuster.lua index 06da13f..4d249cb 100644 --- a/RatingBuster.lua +++ b/RatingBuster.lua @@ -1719,8 +1719,8 @@ local BIND_TRADE_PATTERN = BIND_TRADE_TIME_REMAINING:gsub("%%s", ".*") local BEGIN_ITEM_SPELL_TRIGGER_ONUSE = "^" .. ITEM_SPELL_TRIGGER_ONUSE function RatingBuster.ProcessTooltip(tooltip, name, link) - -- Check if we're in standby mode - --if not RatingBuster:IsActive() then return end + -- Do nothing if the tooltip is being used as a hidden scanning tooltip + if not tooltip:GetPoint() then return end -- Process nested recipes only once local itemType = select(6, GetItemInfoInstant(link))