BankItems

60 - items count in profession window?

What steps will reproduce the problem?
1. Open a profession window (In my case Jewelcrafting)
2. pick a gem to cut that you have in your inventory and then point to the required items for that craft ... you dont see if you have this gem on you nor in any of your characters...
3. point to the uncut gem in your backpack you see that you have this gem in you/your bank or some other character

What is the expected output? What do you see instead?
when i point to the required item (uncut gem) i expecr to see the number of uncut gems i have in my chars it used to work before the patch

What version of the product are you using?
6.2.0.0

Do you have an error log of what happened?
no

Please provide any additional information below.
see the attached screenshot

  • Untitled.png
    on the left you dont see the ...
User When Change
ngvirus Jun 26, 2015 at 19:11 UTC

Added attachment Untitled.png

ngvirus Jun 26, 2015 at 19:07 UTC Create

You must login to post a comment. Don't have an account? Register to get one!

  • 2 comments
  • Avatar of phoenixr7 phoenixr7 Sep 24, 2016 at 14:23 UTC - 0 likes

    I've made a fix for Legion for the 6.0 version. The latest dev version doesn't want to work at all.

    open BankItems.lua Search for "SetCurrencyTokenByID" and after the "end insert the part with "SetRecipeReagentItem", it should look like this (i've marked the new part):

    	local f = tooltip.SetCurrencyTokenByID
    	tooltip.SetCurrencyTokenByID = function(self, ...)
    		f(self, ...)
    		tooltip.BankItemsIsCurrency = "currency:"..(...)
    		BankItems_AddTooltipData(self)
    		tooltip.BankItemsIsCurrency = nil
    	end
    	
            -- FROM HERE
            local g = tooltip.SetRecipeReagentItem
    	tooltip.SetRecipeReagentItem = function(self, ...)
    		g(self, ...)
    		local g_item = C_TradeSkillUI.GetRecipeReagentItemLink(...)
    		tooltip.BankItemsIsCurrency = tonumber(g_item:match("item:(%d+):"))
    		BankItems_AddTooltipData(self)
    		tooltip.BankItemsIsCurrency = nil
    	end
            -- TO HERE
    end
    
  • Avatar of ngvirus ngvirus Jun 26, 2015 at 19:12 UTC - 0 likes

    on the right you can see the gems count in me and in my bank and the same counter used to show at the profession window on the left

    p.s. i've tried it with all others addons disabled, but its the same...

    Last edited Jun 26, 2015 by ngvirus
  • 2 comments

Facts

Last updated
Jun 26, 2015
Reported
Jun 26, 2015
Status
New - Issue has not had initial review yet.
Type
Defect - A shortcoming, fault, or imperfection
Priority
Medium - Normal priority.
Votes
0

Reported by

Possible assignees