View Single Post
08-22-21, 12:51 PM   #3
liquidbase
A Warpwood Thunder Caller
 
liquidbase's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2010
Posts: 97
Thumbs up

Originally Posted by Kanegasi View Post
The source of the issue is the very last line of the code you linked:
OpenAllBagsMatchingContext = D['Noop']
Based on common code practices, D['Noop'] should be equal to function()end.

This error can be fixed by changing that line to the following:
OpenAllBagsMatchingContext = function() return 0 end
Thanks for pointing me in the right direction and making the appropriate change.
@humfras had also told me that before I saw your posting. I also fixed the other error with D['Noop'], because it is the wrong constant in the UI, correct would have been D['Dummy'].
  Reply With Quote