fix teams

This commit is contained in:
2025-08-22 11:42:09 +02:00
parent 7d58b881b2
commit d64c366f4b
2 changed files with 2 additions and 2 deletions

View File

@@ -77,7 +77,7 @@ public:
struct TeamList {
std::array<Team, 2> m_Teams;
TeamList() : m_Teams{Team{TeamColor::Red}, Team{TeamColor::Blue}}{
TeamList() : m_Teams{Team{TeamColor::Blue}, Team{TeamColor::Red}}{
}

View File

@@ -105,7 +105,7 @@ class World {
return m_CurrentState->m_Teams[TeamColor::Blue];
}
const Team& GetBlueTeam() const {
return m_CurrentState->m_Teams[TeamColor::Red];
return m_CurrentState->m_Teams[TeamColor::Blue];
}
Team& GetTeam(TeamColor team) {