nameplates...

changed update rate to 0.02 for casts (else it looks to laggy)
This commit is contained in:
Meow
2026-01-08 01:50:28 +01:00
parent 78422d9f27
commit 2390e6dfd9
+1 -1
View File
@@ -944,7 +944,7 @@ pfUI:RegisterModule("nameplates", "vanilla", function ()
-- OPTIMIZED: Minimal throttle - only skip if very recent update
local target = UnitExists("target") and frame:GetAlpha() == 1 or nil
local throttle = target and 0.02 or 0.10
local throttle = target and 0.02 or 0.02
if (nameplate.lasttick or 0) + throttle > GetTime() then return end
nameplate.lasttick = GetTime()