Skip to content

Commit

Permalink
Merge branch 'stvkno-develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
messer00 committed Dec 5, 2015
2 parents 23cd9a4 + 34a8c8b commit 3fee10b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/MyTarget.lua
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ return {
return info.GetTargetInfo(session.GetTargetHandle()).distance;
end,

isInvicible = function()
isInvincible = function()
return info.GetTargetInfo(session.GetTargetHandle()).isInvicible;
end,

Expand Down Expand Up @@ -77,15 +77,15 @@ return {
return info.GetTargetInfo(session.GetTargetHandle()).isDialog;
end,

getTargetInfoHPGuage = function(frame)
getTargetInfoHPGauge = function(frame)
if targetinfo.isElite == 1 then
return GET_CHILD(frame, "elite", "ui::CGauge");
else
return GET_CHILD(frame, "normal", "ui::CGauge");
end
end,

getBaseHPGuage = function(frame)
getBaseHPGauge = function(frame)
return GET_CHILD(frame, "hp", "ui::CGauge");
end

Expand Down

0 comments on commit 3fee10b

Please sign in to comment.