Skip to content

Commit

Permalink
Fixed lua error on 4th boss Halls Of Fabrication
Browse files Browse the repository at this point in the history
  • Loading branch information
memus committed Sep 9, 2019
1 parent 816722e commit 3816c0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TrialHallsOfFabrication.lua
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ function RaidNotifier.HOF.OnCombatEvent(_, result, isError, aName, aGraphic, aAc
local lastTarget = data[key]
data[key] = tUnitId
if (lastTarget ~= nil and lastTarget ~= data[key]) then -- tanks have swapped?
dbg("%s changed from %s to %s", key, LUNIT:GetNameForUnitId(lastTarget), LUNIT:GetNameForUnitId(tUnitId))
dbg("%s changed from %s to %s", key, self.UnitIdToString(lastTarget), self.UnitIdToString(tUnitId))
local stopCountdown = false
if (tType == COMBAT_UNIT_TYPE_PLAYER) then
-- we are tanking and have just gotten aggro from the other boss, stop the timer??
Expand Down

0 comments on commit 3816c0f

Please sign in to comment.