This commit is contained in:
Robin Appelman 2026-03-26 23:44:23 +01:00
commit fb383652c8
22 changed files with 3161 additions and 3071 deletions

View file

@ -255,7 +255,8 @@ impl Parser for PlayerParser {
Ok(Player {
name,
avatar,
steam_id: SteamID::try_from(id.as_str()).unwrap_or_default(),
steam_id: SteamID::from_str(id.as_str())
.unwrap_or_else(|_| SteamID::from_steam64(0).unwrap()),
honors,
teams,
favorite_classes,