Skip to content

Commit

Permalink
FoL LUA fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Aviana committed Jan 24, 2016
1 parent 1b9e585 commit e15b919
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/HealComm-1.0/HealComm-1.0.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Dependencies: AceLibrary, AceEvent-2.0, RosterLib-2.0
]]

local MAJOR_VERSION = "HealComm-1.0"
local MINOR_VERSION = "$Revision: 11240 $"
local MINOR_VERSION = "$Revision: 11250 $"

if not AceLibrary then error(MAJOR_VERSION .. " requires AceLibrary") end
if not AceLibrary:IsNewVersion(MAJOR_VERSION, MINOR_VERSION) then return end
Expand Down Expand Up @@ -993,7 +993,7 @@ local function GetTargetSpellPower(spell)
end
local buffName = healcommTipTextLeft1:GetText()
if buffName == L["Blessing of Light"] then
local HLBonus, FoLBonus = strmatch(healcommTipTextLeft2:GetText(),"(%d+)")
local HLBonus, FoLBonus = strmatch(healcommTipTextLeft2:GetText(),"(%d+).-(%d+)")
if (spell == L["Flash of Light"]) then
targetpower = FoLBonus + targetpower
elseif spell == L["Holy Light"] then
Expand Down

0 comments on commit e15b919

Please sign in to comment.