fix: reset graph authors upon graph reset (should fix #373)

This commit is contained in:
jeefo 2022-10-04 12:30:14 +03:00
commit c411f1e777
No known key found for this signature in database
GPG key ID: D85B0637366787C3

View file

@ -33,6 +33,9 @@ void BotGraph::reset () {
for (int team = Team::Terrorist; team < kGameTeamNum; ++team) {
m_highestDamage[team] = 1;
}
m_graphAuthor.clear ();
m_graphModified.clear ();
}
int BotGraph::clearConnections (int index) {