Krowi's Extended Vendor UI

Krowi's Extended Vendor UI

59.5k Downloads

Interacting with a vendor prints all purchaseable item IDs in chat

Lunaeria opened this issue ยท 2 comments

commented

Latest update has a bug where, upon opening up the vendor window of an NPC that sells items, the item ID of every available item is printed in chat. No lua errors associated with this.

World Of Warcraft Screenshot 2024 10 27 - 14 43 16 11

commented

Fixed with 8.6, should be pushed soon.

commented

The same issue happens in version 9.0. The only print line i found is in:
Krowi_ExtendedVendorUI\Gui\FilterButton\FilterButtonMixin.lua line 129. I comment it and the chat spam stops.

127	for _, id in pairs(C_TradeSkillUI.GetAllRecipeIDs()) do
128		local recipeInfo = C_TradeSkillUI.GetRecipeInfo(id)
129		-- print(recipeInfo.recipeID, recipeInfo.name)
130	end