I made an aura with a custom trigger that send a ScanEvent (WeakAuras.ScanEvents("UPDATE_ASSIST_STATE")).
Then I added a condition to this aura where I have set UPDATE_ASSIST_STATE as Additional Events.
So, my intention is to update the formatting (condition) when my aura is triggered.
Unfortunately, it doesn't work with UPDATE_ASSIST_STATE but works with WoW API events (like PLAYER_IN_COMBAT_CHANGED)
I think the problem is that the ScanEvent is sent by the same aura that listen it because I made another aura that also listen UPDATE_ASSIST_STATE and it works. Can someone confirm? Do you have any suggestion?