From 30544e2accd2f3b29a68014a4bd018aa1cd12890 Mon Sep 17 00:00:00 2001 From: Meow <30401521+me0wg4ming@users.noreply.github.com> Date: Sun, 11 Jan 2026 21:46:02 +0100 Subject: [PATCH] raid roster update raid roster fallback update changed to 1second (doesn't need more cause this is a backup) --- modules/raid.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/raid.lua b/modules/raid.lua index 69f271cd..5c244990 100644 --- a/modules/raid.lua +++ b/modules/raid.lua @@ -87,9 +87,9 @@ pfUI:RegisterModule("raid", "vanilla:tbc", function () pfUI.uf.raid:RegisterEvent("VARIABLES_LOADED") pfUI.uf.raid:SetScript("OnEvent", function() this:Show() end) pfUI.uf.raid:SetScript("OnUpdate", function() - -- Throttle raid roster updates to 5 FPS + -- Throttle raid roster updates to 1 FPS if (this.tick or 0) > GetTime() then return end - this.tick = GetTime() + 0.25 + this.tick = GetTime() + 1.0 -- don't proceed without raid or during combat if not UnitInRaid("player") or (InCombatLockdown and InCombatLockdown()) then return end