04-19-2015, 07:44 AM
Seems that there is a bug for gathering at unspoiled nodes in the latest revision of code.
The bot stops gathering at line 1720 of ffxiv_skillmgr.lua when I use my gathering skill profile. Line 1720 now writes:
if (IsUnspoiledNode(note.contentid) and not itemsUncovered) then
I think it should be:
if (IsUnspoiled(node.contentid) and not itemsUncovered) then
I have changed it in my local copy and seems that it works fine now.
For your reference.
The bot stops gathering at line 1720 of ffxiv_skillmgr.lua when I use my gathering skill profile. Line 1720 now writes:
if (IsUnspoiledNode(note.contentid) and not itemsUncovered) then
I think it should be:
if (IsUnspoiled(node.contentid) and not itemsUncovered) then
I have changed it in my local copy and seems that it works fine now.
For your reference.