View Single Post
11-28-12, 11:42 AM   #7
Ketho
A Pyroguard Emberseer
 
Ketho's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 1,026
Originally Posted by Screamie View Post
They haven't removed the return values from UnitAura/UnitBuff, but they added a extra return value after isBossDebuff return value. So this works for me:
[...]
The diff suggests differently
https://github.com/tekkub/wow-ui-sou...6872ff#L56L604
Code:
- local name, rank, icon, count, debuffType, duration, expirationTime, unitCaster, canStealOrPurge, shouldConsolidate, spellId, canApplyAura, isBossDebuff, points1, points2, points3, isCastByPlayer = UnitDebuff(unit, index, filter);
+ local name, rank, icon, count, debuffType, duration, expirationTime, unitCaster, canStealOrPurge, shouldConsolidate, spellId, canApplyAura, isBossDebuff, isCastByPlayer = UnitDebuff(unit, index, filter);
Not sure what to believe anymore though. Or maybe they just switched them around ..

Last edited by Ketho : 11-28-12 at 11:45 AM.
  Reply With Quote