The Chocobo Object is returning null in the RBx64 version. The following code is returned with the result as follows when executed from the x64 bit version. Running from the x86 version executes and returns as expected.
```x64```
null
PLAYERNAMEREDACTED100
Achilles100
```x86```
0x16021420
PLAYERNAMEREDACTED100
Achilles100
Code:
ClearLog();
Log(ff14bot.Objects.Chocobo.Object);
foreach (var partyMember in PartyManager.VisibleMembers)
{
Log(partyMember.Name + partyMember.GameObject.CurrentHealthPercent);
}
```x64```
null
PLAYERNAMEREDACTED100
Achilles100
```x86```
0x16021420
PLAYERNAMEREDACTED100
Achilles100