Compare commits

..

No commits in common. "master" and "1.0" have entirely different histories.
master ... 1.0

3 changed files with 4 additions and 5 deletions

3
.pkgmeta Normal file
View File

@ -0,0 +1,3 @@
manual-changelog:
filename: changelog.txt
markup-type: markdown

View File

@ -12,8 +12,3 @@ Credits to [tekkub](https://github.com/TekNoLogic/GnomishVendorShrinker) and [To
* Recipes you do not yet know are highlighted in blue. * Recipes you do not yet know are highlighted in blue.
* Items you cannot use are highlighted in red. * Items you cannot use are highlighted in red.
* Search box to help you find that item you're after on a vendor with hundreds of items. * Search box to help you find that item you're after on a vendor with hundreds of items.
![Screenshot](https://i.imgur.com/c6Md0ks.png "Screenshot")
* [WoWInterface: GnomishVendorShrinker (Classic)](https://www.wowinterface.com/downloads/info25279-GnomishVendorShrinkerClassic.html)
* [Code development](https://sergio.am/code/GnomishVendorShrinker)

View File

@ -13,6 +13,7 @@ local function Knowable(link)
if not id then return false end if not id then return false end
local _, _, _, _, _, class, _, _, _, texture = GetItemInfo(link) local _, _, _, _, _, class, _, _, _, texture = GetItemInfo(link)
if class == MISC and select(2, C_ToyBox.GetToyInfo(id)) then return true end
if class == RECIPE or GARRISON_ICONS[texture] then return true end if class == RECIPE or GARRISON_ICONS[texture] then return true end
end end