Skip to content

Commit

Permalink
remove check for ignoring very short casttimes, not sure if this chec…
Browse files Browse the repository at this point in the history
…k is causing side effects in rare situations
  • Loading branch information
wardz committed Nov 28, 2019
1 parent d458d70 commit d51a2d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ClassicCastbars/ClassicCastbars.lua
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ function addon:COMBAT_LOG_EVENT_UNFILTERED()
if not spellID then return end

local _, _, icon, castTime = GetSpellInfo(spellID)
if not castTime or castTime < 300 then return end
if not castTime then return end

-- is player or player pet or mind controlled
local isPlayer = bit_band(srcFlags, COMBATLOG_OBJECT_CONTROL_PLAYER) > 0
Expand Down

0 comments on commit d51a2d2

Please sign in to comment.