Skip to content

Commit

Permalink
Updates and cleanups for classic
Browse files Browse the repository at this point in the history
  • Loading branch information
funkydude committed Jul 22, 2024
1 parent 207b928 commit 69e821e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Bastion/TwilightAscendants.lua
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ do
if self:Me(args.destGUID) then
staticOverloadOnMe = false
mySaySpamTarget = nil
self:Say(args.spellId, CL.link_removed, nil, "Link removed")
end
self:CustomIcon(staticOverloadMarker, args.destName)
end
Expand All @@ -211,8 +212,7 @@ do
if self:Me(args.destGUID) then
gravityCoreOnMe = true
if staticOverloadTarget and self:GetOption("custom_on_linked_spam") then
local targetName = gsub(staticOverloadTarget, "%-.+", "")
mySaySpamTarget = {4, targetName}
mySaySpamTarget = {4, self:Ambiguate(staticOverloadTarget, "short")}
self:SimpleTimer(RepeatLinkSay, 1.5)
end
self:Say(args.spellId, CL.count_rticon:format(CL.link, 2, 5), nil, "Link (2{rt5})")
Expand All @@ -222,8 +222,7 @@ do
self:Message(args.spellId, "yellow", CL.link_both_icon:format(4, self:ColorName(staticOverloadTarget), 5, self:ColorName(args.destName)))
end
if staticOverloadOnMe and self:GetOption("custom_on_linked_spam") then
local targetName = gsub(args.destName, "%-.+", "")
mySaySpamTarget = {5, targetName}
mySaySpamTarget = {5, self:Ambiguate(args.destName, "short")}
RepeatLinkSay()
end
end
Expand All @@ -233,6 +232,7 @@ do
if self:Me(args.destGUID) then
gravityCoreOnMe = false
mySaySpamTarget = nil
self:Say(args.spellId, CL.link_removed, nil, "Link removed")
end
self:CustomIcon(gravityCoreMarker, args.destName)
end
Expand Down
2 changes: 1 addition & 1 deletion Blackwing/Magmaw.lua
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ do
function mod:MangleRemoved(args)
mangleCount = mangleCount + 1
self:StopBar(args.spellName, args.destName)
self:CDBar(args.spellId, prevMangle > 0 and (95 - (args.time-prevMangle)) or 95, CL.count:format(args.spellName, mangleCount)) -- Show the bar after it ends on the tank
self:CDBar(args.spellId, prevMangle > 0 and (95 - (args.time-prevMangle)) or 65, CL.count:format(args.spellName, mangleCount)) -- Show the bar after it ends on the tank
end
end

Expand Down

0 comments on commit 69e821e

Please sign in to comment.