In 11.0.2 while in delves the event `GROUP_ROSTER_UPDATE` constantly triggers causing addon to recalculate buffs https://us.forums.blizzard.com/en/wow/t/an-event-called-grouprosterupdate-appears-to-be-constantly-firing/1940551 This causes constant stutter due to cost of redoing all the calls every second. smartbuff.lua line 706 or so: ``` if event == "ZONE_CHANGED_NEW_AREA" or event == "GROUP_ROSTER_UPDATE" then SMARTBUFF_SetTemplate() end ```
In 11.0.2 while in delves the event
GROUP_ROSTER_UPDATEconstantly triggers causing addon to recalculate buffshttps://us.forums.blizzard.com/en/wow/t/an-event-called-grouprosterupdate-appears-to-be-constantly-firing/1940551
This causes constant stutter due to cost of redoing all the calls every second.
smartbuff.lua line 706 or so: