This project is abandoned and its default file will likely not work with the most recent version of World of Warcraft. Whether this project is out of date or its author has marked it as abandoned, this project is no longer maintained.
There seems to be a problem on line 184 of FarmerFu.lua where ContainerIDToInventoryID() is called with an invalid container ID. Does anyone know how this could be fixed?
I'd love to see this addon updated to work in WotLK!
I haven't been able to get anyone to fix my accounts, not for lack of trying, so I don't actually own the project.
I'll update the one on WoWInterface, though.
someone posted a fix there. it worked for me.
moxyll wrote:
I was able to get rid of the "ContainerIDToInventoryID(): invalid container ID" error by changing line 183 of FuBar_FarmerFu/FarmerFu.lua from this:
Code:
if bag ~= 0 and bag ~= -2 then
to this:
Code:
if bag ~= 0 and bag >= -1 then
As far as I know that shouldn't break anything, and it seemed to work in my minimal testing.
Thanks @Movarrin for this!
Any fix coming?