쐐기돌의 아이템 고유명이 keystone: 꼴로 변경되어서 생기는 문제라고 합니다. 아래나온대로 하면 쐐기돌이 안보이는 문제는 해결됩니다.

다만 쐐기돌의 보라색 테두리는 안보이는 걸로 보아 완전한 해결책은 아닌 것 같습니다.
이 외에 새 아이템들이 안보이거나 하는 문제는 개발자가 직접 와서 수정해주길 기다려야 할 것 같네요.

Go into AdiBagscoreUtility.lua and open in notepad++

go to line 152 and replace

if type(link) == "string" and (strmatch(link, "battlepet:") or (strmatch(link, 'item:[-:%d]+') and not strmatch(link, 'item:%d+:0:0:0:0:0:0:0:0:0'))) then

with

if type(link) == "string" and (strmatch(link, "battlepet:") or strmatch(link, "keystone:") or (strmatch(link, 'item:[-:%d]+') and not strmatch(link, 'item:%d+:0:0:0:0:0:0:0:0:0'))) then



https://github.com/AdiAddons/AdiBags/issues/169