Skip to content

Commit

Permalink
fix spell casting announcement
Browse files Browse the repository at this point in the history
  • Loading branch information
ffainy committed Apr 6, 2022
1 parent e00525c commit 0ddef1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/announcement/announcement.lua
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function ANNOUNCEMENT:OnEvent()
if destName == nil then
SendChatMessage(string.format(_G.ACTION_SPELL_CAST_SUCCESS .. ' %s', GetSpellLink(spellID)), GetChannel())
else
SendChatMessage(string.format(_G.ACTION_SPELL_CAST_SUCCESS .. ' %s %s %s', GetSpellLink(spellID), destName), arrowStr, GetChannel())
SendChatMessage(string.format(_G.ACTION_SPELL_CAST_SUCCESS .. ' %s %s %s', GetSpellLink(spellID), arrowStr, destName), GetChannel())
end
end
elseif eventType == 'SPELL_INTERRUPT' and C.DB.Announcement.Interrupt then
Expand Down

0 comments on commit 0ddef1b

Please sign in to comment.