From d4665fcd05956a5ccbbd20bbbc2da45df4c01c06 Mon Sep 17 00:00:00 2001 From: avitasia Date: Thu, 19 Feb 2026 17:41:51 -0800 Subject: [PATCH] remove PB_FilterGuidEvents as it is handled by nampower now --- settings.lua | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/settings.lua b/settings.lua index e774ebc..9c63d94 100644 --- a/settings.lua +++ b/settings.lua @@ -589,29 +589,6 @@ PerfBoost.cmdtable = { }, }, - spacer_main = { - type = "header", - name = " ", - order = 25, - }, - - PB_FilterGuidEvents = { - type = "toggle", - name = "Filter GUID Events", - desc = "Filters out generally unnecessary superwow GUID-based events to reduce event spam and improve performance. Blocks events like UNIT_AURA, UNIT_HEALTH, UNIT_MANA when triggered with a guid instead of a string like 'player' or 'raid1', while preserving commonly used guid events like UNIT_COMBAT and UNIT_MODEL_CHANGED.", - order = 30, - get = function() - return GetCVar("PB_FilterGuidEvents") == "1" - end, - set = function(v) - PerfBoost.db.profile.PB_FilterGuidEvents = v - if v == true then - SetCVar("PB_FilterGuidEvents", "1") - else - SetCVar("PB_FilterGuidEvents", "0") - end - end, - }, }, }