diff --git a/BfA/SiegeOfBoralus/Trash.lua b/BfA/SiegeOfBoralus/Trash.lua index d6ad1b4d3..eb3989d88 100644 --- a/BfA/SiegeOfBoralus/Trash.lua +++ b/BfA/SiegeOfBoralus/Trash.lua @@ -258,7 +258,7 @@ do local prev = 0 function mod:BurningTarDamage(args) local t = args.time - if t - prev > 1.5 then + if self:Me(args.destGUID) and t - prev > 1.5 then prev = t self:PersonalMessage(256640, "underyou") self:PlaySound(256640, "underyou") @@ -340,7 +340,7 @@ do if args.time - prev > 2 then prev = args.time self:TargetMessage(args.spellId, "yellow", args.destName) - self:PlaySound(args.spellId, "alarm") + self:PlaySound(args.spellId, "alarm", nil, args.destName) end end end