Deprecate NoTeamAttribute and CannotDetermineTeams

This commit is contained in:
Cutieguwu
2025-04-23 20:33:18 -04:00
parent bfd135df94
commit a5535354a3
3 changed files with 6 additions and 24 deletions

View File

@@ -27,7 +27,7 @@ impl Game {
let mut teams = vec![];
self.events.iter().for_each(|event| {
if let Ok(team) = event.team() {
if let Some(team) = event.team() {
if !ignore.contains(&team) && !teams.contains(&team) {
teams.push(team)
}