View Single Post
02-17-16, 01:17 PM   #13
Resike
A Pyroguard Emberseer
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 1,290
Originally Posted by zork View Post
Maybe you can PM alestane. I'm pretty sure he wrote that part. http://www.wowinterface.com/portal.php?id=353
I made a herp-derp workaround like this:

Lua Code:
  1. local OldGetWeaponEnchantInfo = GetWeaponEnchantInfo
  2.  
  3. GetWeaponEnchantInfo = function(self)
  4.     local hasMainHandEnchant, mainHandExpiration, mainHandCharges, mainHandEnchantID, hasOffHandEnchant, offHandExpiration, offHandCharges, offHandEnchantId = OldGetWeaponEnchantInfo()
  5.     return hasMainHandEnchant, mainHandExpiration, mainHandCharges, hasOffHandEnchant, offHandExpiration, offHandCharges, offHandEnchantId
  6. end

And it fixes the issue, so i'm pretty sure that problem is what mentioned above:


However it breaks the functionality of the whole temp enchants frames.

Last edited by Resike : 02-17-16 at 03:27 PM.
  Reply With Quote