fix: behavior with bomb, when ignoring objectives (ref #696)

This commit is contained in:
jeefo 2025-05-22 22:05:48 +03:00
commit 9cb8171030
No known key found for this signature in database
GPG key ID: D696786B81B667C8
5 changed files with 58 additions and 40 deletions

View file

@ -115,6 +115,14 @@ struct FrameDelay {
float time {};
};
// shared team data for bot
struct BotTeamData {
bool leaderChoosen {}; // is team leader choose thees round
bool positiveEco {}; // is team able to buy anything
float lastRadioTimestamp {}; // global radio time
int32_t lastRadioSlot = { kInvalidRadioSlot }; // last radio message for team
};
// include bot graph stuff
#include <graph.h>
#include <vision.h>