ANOUNCE_RESURRECTION not working in classic
Confirm the issue lies within VuhDo:
YES
Describe your environment:
- VuhDo version (e.g. v3.102, Classic or Retail) vuhdo 3.111-classic
- World of Warcraft region (ie. Americas/Oceanic, EU, CN or KR) CN
- World of Warcraft client language (eg. enUS) zhCN
Summary of the issue:
ANOUNCE_RESURRECTION not working in classic.
I found the bug is in file "classic\Interface\AddOns\VuhDo\VuhDoSpellEventHandler.lua", line 121
local tChannel = (UnitInBattleground("player") or HasLFGRestrictions()) and "INSTANCE_CHAT"
HasLFGRestrictions() function does not exist.
I modify to local tChannel = UnitInBattleground("player") and "INSTANCE_CHAT"
it's work fine.