Created
August 6, 2008 23:44
-
-
Save tekkub/4296 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local spell | |
spell = UnitCastingInfo("target") | |
if spell then | |
self:UNIT_SPELLCAST_START(nil, "target") | |
return | |
end | |
spell = UnitChannelInfo("target") | |
if spell then | |
self:UNIT_SPELLCAST_CHANNEL_START(nil, "target") | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment