Can't add items by drag and drop
cenodood opened this issue ยท 3 comments
Symptom: Monomyth is the ::only:: addon loaded. I open my bags and Monomyth. I try to drag a quest item to the filter window. Monomyth ignores the item. I'm trying to filter these items:
79264 - ruby shard
79265 - blue feather
79266 - jade cat
79267 - lovely apple
79268 - marsh lily
I was going to add them manually to config.lua, but I couldn't discern the pattern of the first number in the paired numbers of IgnoredQuests.
Ah, figured out the pattern. The first number is the quest id. There's a many to one mapping between the quest ids and the quest item ids. Numbers pulled from wowhead.com.
-- Farming - Ruby Shard
[30397] = 79264, -- A Ruby Shard for Chee Chee
[30160] = 79264, -- A Ruby Shard for Ella
[30416] = 79264, -- A Ruby Shard for Farmer Fung
[30422] = 79264, -- A Ruby Shard for Fish
[30379] = 79264, -- A Ruby Shard for Gina
[30409] = 79264, -- A Ruby Shard for Haohan
[30434] = 79264, -- A Ruby Shard for Jogu
[30391] = 79264, -- A Ruby Shard for Old Hillpaw
[30403] = 79264, -- A Ruby Shard for Sho
[30428] = 79264, -- A Ruby Shard for Tina
-- Farming - Blue Feather
[30400] = 79265, -- A Blue Feather for Chee Chee
[30182] = 79265, -- A Blue Feather for Ella
[30419] = 79265, -- A Blue Feather for Farmer Fung
[30425] = 79265, -- A Blue Feather for Fish
[30388] = 79265, -- A Blue Feather for Gina
[30412] = 79265, -- A Blue Feather for Haohan
[30437] = 79265, -- A Blue Feather for Jogu
[30394] = 79265, -- A Blue Feather for Old Hillpaw
[30406] = 79265, -- A Blue Feather for Sho
[30431] = 79265, -- A Blue Feather for Tina
-- Farming - Jade Cat
[30399] = 79266, -- A Jade Cat for Chee Chee
[30181] = 79266, -- A Jade Cat for Ella
[30418] = 79266, -- A Jade Cat for Farmer Fung
[30424] = 79266, -- A Jade Cat for Fish
[30387] = 79266, -- A Jade Cat for Gina
[30411] = 79266, -- A Jade Cat for Haohan
[30436] = 79266, -- A Jade Cat for Jogu
[30393] = 79266, -- A Jade Cat for Old Hillpaw
[30405] = 79266, -- A Jade Cat for Sho
[30430] = 79266, -- A Jade Cat for Tina
-- Farming - Lovely Apple
[30398] = 79267, -- A Lovely Apple for Chee Chee
[30189] = 79267, -- A Lovely Apple for Ella
[30417] = 79267, -- A Lovely Apple for Farmer Fung
[30423] = 79267, -- A Lovely Apple for Fish
[30380] = 79267, -- A Lovely Apple for Gina
[30410] = 79267, -- A Lovely Apple for Haohan
[30435] = 79267, -- A Lovely Apple for Jogu
[30392] = 79267, -- A Lovely Apple for Old Hillpaw
[30404] = 79267, -- A Lovely Apple for Sho
[30429] = 79267, -- A Lovely Apple for Tina
-- Farming - Marsh Lily
[30401] = 79268, -- A Marsh Lily for Chee Chee
[30383] = 79268, -- A Marsh Lily for Ella
[30420] = 79268, -- A Marsh Lily for Farmer Fung
[30426] = 79268, -- A Marsh Lily for Fish
[30389] = 79268, -- A Marsh Lily for Gina
[30413] = 79268, -- A Marsh Lily for Haohan
[30438] = 79268, -- A Marsh Lily for Jogu
[30395] = 79268, -- A Marsh Lily for Old Hillpaw
[30407] = 79268, -- A Marsh Lily for Sho
[30432] = 79268, -- A Marsh Lily for Tina
Well, I tried adding these to Monomyth. They don't show up in the filtered window. Help!