I get this error when doing /enchant bidbroker. So I guess
I won't be bidding on items to disenchant for a while. I've
got Auctioneer 3.0.11 and Enchantrix 2.0.4.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: NO
I got this same error on the Enchanter's Boots.
Logged In: NO
Rquest-ID-1293429-Guy: I also got it on Greater Nether Essence
Logged In: YES
user_id=1304343
I'm using newest v2.0.4 - same error
d/e'd Master's Gloves of the Eagle, then clicked on the chat
link from the Enchantrix-generated msg that shows the d/e &
got the error.
Open Lootlink, looked up the item, hovered over and got the
same error.
Error is: "Interface\AddOns\Enchantrix\Enchantrix.lua:868:
attempt to perform arithmetic on field 'biCount' (a nil value)"
Logged In: NO
I also have this problem quite regularly when I mouseover
weapons and also shards in my bags and bank.
Logged In: YES
user_id=87612
I get this error when doing /enchant bidbroker. So I guess
I won't be bidding on items to disenchant for a while. I've
got Auctioneer 3.0.11 and Enchantrix 2.0.4.
Logged In: NO
For the biCount error it looks like
disenchantsTo[dSig].biCount and disenchantsTo[dSig].bdCount
might be uninitialized for the enchantedLocal case.
adding
disenchantsTo[dSig].biCount = 0;
disenchantsTo[dSig].bdCount = 0;
at line 849
seemed to fixed the bug for me, though I must admit its a
stab in the dark and Norganna will have to verify.