diff --git a/BlackwingLair/Broodlord.lua b/BlackwingLair/Broodlord.lua index 475ebf6..c896c2c 100644 --- a/BlackwingLair/Broodlord.lua +++ b/BlackwingLair/Broodlord.lua @@ -77,6 +77,6 @@ function mod:UNIT_HEALTH(event, unit) end function mod:Teleport() - self:Message("stages", "cyan", CL.percent:format(50, CL.teleport)) + self:Message("stages", "cyan", CL.percent:format(50, CL.teleport), false) self:PlaySound("stages", "long") end diff --git a/BlackwingLair/Ebonroc.lua b/BlackwingLair/Ebonroc.lua index d3bec85..7a9e835 100644 --- a/BlackwingLair/Ebonroc.lua +++ b/BlackwingLair/Ebonroc.lua @@ -70,8 +70,8 @@ function mod:ShadowFlameSoD(args) if self:MobId(args.sourceGUID) == 14601 then local unit = self:GetUnitIdByGUID(args.sourceGUID) if not unit or self:UnitWithinRange(unit, 35) or args.sourceGUID == self:UnitGUID("target") then - self:Message(args.spellId, "red") - self:PlaySound(args.spellId, "long") + self:Message(22539, "red") + self:PlaySound(22539, "long") end end end diff --git a/BlackwingLair/Flamegor.lua b/BlackwingLair/Flamegor.lua index 00a0697..cdc014d 100644 --- a/BlackwingLair/Flamegor.lua +++ b/BlackwingLair/Flamegor.lua @@ -78,8 +78,8 @@ function mod:ShadowFlameSoD(args) if self:MobId(args.sourceGUID) == 11981 then local unit = self:GetUnitIdByGUID(args.sourceGUID) if not unit or self:UnitWithinRange(unit, 35) or args.sourceGUID == self:UnitGUID("target") then - self:Message(args.spellId, "red") - self:PlaySound(args.spellId, "long") + self:Message(22539, "red") + self:PlaySound(22539, "long") end end end