- Fixed the avoidance tab on the player detail window for Demon Hunters.
- Added the tag {target} on custom text for the interrupt announcer.
- Merging Demon Hunter 'Fury of the Illidari' spell when the consolidade option is enabled under Spell Customization.
This commit is contained in:
parent
f7acdd327b
commit
01fa675160
4 changed files with 17 additions and 6 deletions
|
|
@ -310,6 +310,7 @@
|
|||
|
||||
if (custom ~= "") then
|
||||
custom = custom:gsub ("{spell}", spellname)
|
||||
custom = custom:gsub ("{target}", alvo_name or "")
|
||||
custom = custom:gsub ("{next}", next)
|
||||
_detalhes:SendMsgToChannel (custom, channel, _detalhes.announce_interrupts.whisper)
|
||||
else
|
||||
|
|
@ -335,6 +336,7 @@
|
|||
if (custom ~= "") then
|
||||
custom = custom:gsub ("{spell}", spellname)
|
||||
custom = custom:gsub ("{next}", who_name)
|
||||
custom = custom:gsub ("{target}", alvo_name or "")
|
||||
_detalhes:SendMsgToChannel (custom, "PRINT")
|
||||
else
|
||||
local minute, second = _detalhes:GetCombat():GetFormatedCombatTime()
|
||||
|
|
@ -409,7 +411,7 @@
|
|||
|
||||
if (custom ~= "") then
|
||||
custom = custom:gsub ("{spell}", spellname)
|
||||
custom = custom:gsub ("{target}", alvo_name)
|
||||
custom = custom:gsub ("{target}", alvo_name or "")
|
||||
_detalhes:SendMsgToChannel (custom, channel, _detalhes.announce_interrupts.whisper)
|
||||
else
|
||||
local msg
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue