That is the error and this is the line in cl_itemqueue:
Code:
Pointshop2.IconQueue = Pointshop2.IconQueue or LibK.CircularQueue()
CircularQueue is LibK function, but idk why would it return bool value. From what i see the function should return meta table.
Code:
function CircularQueue( size ) local obj = {} obj.readIndex = 1 obj.writeIndex = 1
obj.capacity = size or 8
return setmetatable( obj, META ) end
It looks like something is wrong with your LibK or Pointshop. Have you edited anything in them? Are they updated to latest version? Maybe you have some uncompatible addon. Have you checked?