Information from engine incorrect

Hi

I’m checking my bots pending actions and units coming back from the engine, are these values having issues?

I did print of the values as below running directly from the ReferenceBot and I see just available units are getting populated. Is this an engine bug.
console.log(

    this.bot.pendingActions,

    this.bot.availableUnits,

    this.bot.scoutingUnits,

    this.bot.farmingUnits,

    this.bot.lumberingUnits,

    this.bot.miningUnits

  );

[] 0 undefined undefined undefined undefined

Just to add, I did need to add this.pendingActions to the bot.js file.

I found a workaround for this for now, I see the pendingActions are listed under actions and pulled this through from there.

This can be ignored, not a train smash with my bot.
I have sufficient info to work with.