View Single Post
09-17-05, 05:58 PM   #2
Kaelten
Jack's raging bile duct
 
Kaelten's Avatar
Featured
Join Date: May 2005
Posts: 782
try changing

Code:
local KCitemCode = KC_Items:GetCode(itemLink);
myValue = KC_SellValue:GetPrice(KCitemCode);
to

Code:
 
local KCitemCode = KC_Items:GetCode(itemLink);
if (KCitemCode) then
myValue = KC_SellValue:GetPrice(KCitemCode);
end
that error is generally caused by a nil path being sent into the AceDB class. I think this will filter that out.
__________________
WowAce.com & CurseForge.com Adminstrator
Developer of Ace3, OneBag3, and many other addons and libraries
Project lead and Mac developer for the Curse Client

Anyone that needs what they want
And doesn't want what they need
I want nothing to do with
  Reply With Quote