From ce0c2104fa82148c55205c89eefbb860d992d8d1 Mon Sep 17 00:00:00 2001 From: Meow <30401521+me0wg4ming@users.noreply.github.com> Date: Sat, 10 Jan 2026 22:07:07 +0100 Subject: [PATCH] possible fix for low fps possible fix for low fps - needs further testing tommorow in my raid... no garantue --- api/unitframes.lua | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/api/unitframes.lua b/api/unitframes.lua index 887b4e49..f107bb94 100644 --- a/api/unitframes.lua +++ b/api/unitframes.lua @@ -1050,13 +1050,7 @@ function pfUI.uf.OnUpdate() if this.label == "raid" or this.label == "party" then if (this.throttleTick or 0) > now then return end this.throttleTick = now + 0.1 - - -- Periodic buff scan for raid/party frames (every 0.2s) - -- This catches buffs that expire without firing UNIT_AURA - if (this.buffScanTick or 0) < now then - this.buffScanTick = now + 0.2 - this.update_aura = true - end + -- NOTE: buffScanTick removed for performance testing elseif this.label then if (this.throttleTick or 0) > now then return end this.throttleTick = now + 0.025