21 - Update UnitAura checks
The UnitAura api was changed, it now returns the name of the unit instead of a boolean isMine.
For example, in TickToxin, instead of
name, rank, icon, count, debuffType, duration, expireTime, isMine = UnitAura('target', i, 'HARMFUL|PLAYER') if name == spellName and unit and isMine then
you'll want
name, rank, icon, count, debuffType, duration, expireTime, unit = UnitAura('target', i, 'HARMFUL|PLAYER') if name == spellName and unit and UnitIsUnit(unit, "player") then