Skip to content

Commit db5f0cd

Browse files
committed
make sure dstGUID and srcGUID is same for channeled cast stop
1 parent 32b9c59 commit db5f0cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ClassicCastbars/ClassicCastbars.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ function addon:COMBAT_LOG_EVENT_UNFILTERED()
394394
elseif eventType == "SPELL_AURA_REMOVED" then
395395
-- Channeled spells has no SPELL_CAST_* event for channel stop,
396396
-- so check if aura is gone instead since most (all?) channels has an aura effect.
397-
if channeledSpells[spellName] then
397+
if channeledSpells[spellName] and srcGUID == dstGUID then
398398
return self:DeleteCast(srcGUID)
399399
elseif castTimeIncreases[spellName] then
400400
-- Aura that slows casting speed was removed.

0 commit comments

Comments
 (0)