I modified GatherChum.cs to fix this. Not sure if it was the best way to fix it though, as this is pretty much my first time modifying a HB plugin/bot.
Changed
Code:
new Sequence(
new Action(ret => Mount.Dismount())),
new Wait(2, ret => !StyxWoW.Me.Mounted, new ActionIdle()))),
to
Code:
new Sequence(
new PrioritySelector(
new Decorator(node => ((WoWGameObject)node).IsHerb,
new Action(ret => WoWMovement.Move(WoWMovement.MovementDirection.Descend))),
new Decorator(node => ((WoWGameObject)node).IsMineral,
new Action(ret => Mount.Dismount()))),
new Wait(2, ret => !StyxWoW.Me.Mounted, new ActionIdle()))),
Is there any better way than using
Code:
new Action(ret => WoWMovement.Move(WoWMovement.MovementDirection.Descend))
to make it land while in flight form?
And while I'm here, thanks for the awesome plugin! Never really liked GB that much, hope this one can surpass it soon.

One problem that I've experienced is that if there are 2 veins close to each other, it wont ascend before going for the second vein, so if there is anything in the way, it gets stuck. Is there any way to make it ascend before going for the next vein?
And also, some kind of unstuck movement would be great.