Thread: eCastingBar
View Single Post
04-26-18, 02:39 AM   #4
d87
A Chromatic Dragonspawn
 
d87's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2006
Posts: 163
find this line
Code:
if( newevent == "UNIT_SPELLCAST_START" ) then
		local spellName, spellRank, displayName, texture, startTime, endTime, isTradeSkill, castID, notInterruptible = UnitCastingInfo(unit)
remove spellRank. it is the second parameter in this case (or nameSubtext)
also add 'local spellRank = "" ' after in case the addon was using it somehow

and same thing with two occurrences for UnitChannelInfo in CHANNEL_START and CHANNEL_UPDATE event handlers


but regarding the first two errors you mentioned i don't know and i don't have the beta

Last edited by d87 : 04-26-18 at 02:52 AM.
  Reply With Quote