Skip to content

Commit

Permalink
BlackwingLair: Fix parser errors
Browse files Browse the repository at this point in the history
  • Loading branch information
funkydude committed Sep 27, 2024
1 parent 3965a7e commit efc5563
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion BlackwingLair/Broodlord.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions BlackwingLair/Ebonroc.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions BlackwingLair/Flamegor.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit efc5563

Please sign in to comment.