Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tdymel committed Mar 14, 2017
1 parent ae39054 commit 0b76b36
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions DPSMate/DPSMate_DataBuilder.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1629,7 +1629,7 @@ function DPSMate.DB:GetAbsorbingShield(ability, abilityTarget, cate)
local unit, buff = DPSMate.Parser:GetUnitByName(abilityTarget)
if unit then
for i=1, 32 do
DPSMate_Tooltip:ClearAllLines()
DPSMate_Tooltip:ClearLines()
DPSMate_Tooltip:SetUnitBuff(unit, i, "HELPFUL")
buff = DPSMate_TooltipTextLeft1:GetText()
if (not buff) then break end
Expand Down Expand Up @@ -2141,7 +2141,7 @@ end
function DPSMate.DB:UnitIsSaved(unit)
local buff
for i=1, 32 do
DPSMate_Tooltip:ClearAllLines()
DPSMate_Tooltip:ClearLines()
DPSMate_Tooltip:SetUnitBuff(unit, i)
buff = DPSMate_TooltipTextLeft1:GetText()
if (not buff) then break end
Expand Down
2 changes: 1 addition & 1 deletion DPSMate/DPSMate_Sync.lua
Original file line number Diff line number Diff line change
Expand Up @@ -949,7 +949,7 @@ DPSMate.Sync.OtherAbilities = {
DPSMate.Parser.SendSpell = {}
local oldUseAction = UseAction
DPSMate.Parser.UseAction = function(slot, checkCursor, onSelf)
DPSMate_Tooltip:ClearAllLines()
DPSMate_Tooltip:ClearLines()
DPSMate_Tooltip:SetAction(slot)
local aura = DPSMate_TooltipTextLeft1:GetText()
local target = GetTargetP()
Expand Down

0 comments on commit 0b76b36

Please sign in to comment.