mirror of
https://codeberg.org/icewind/ugc-scaper.git
synced 2026-06-03 18:24:10 +02:00
improve not found team detection
This commit is contained in:
parent
e71ba3b490
commit
cf8de44bbb
7 changed files with 42 additions and 29 deletions
|
|
@ -466,14 +466,17 @@ impl FromStr for GameMode {
|
|||
"1v1" => Ok(GameMode::Ones),
|
||||
"Highlander" => Ok(GameMode::Highlander),
|
||||
"TF2 Highlander" => Ok(GameMode::Highlander),
|
||||
"TF2-H" => Ok(GameMode::Highlander),
|
||||
"ASIA TF2-H" => Ok(GameMode::Highlander),
|
||||
"ASIA TF2-6" => Ok(GameMode::Sixes),
|
||||
"ASIA TF2-4" => Ok(GameMode::Fours),
|
||||
"TF2 8vs8" => Ok(GameMode::Eights),
|
||||
"8vs8" => Ok(GameMode::Eights),
|
||||
"TF2 6vs6" => Ok(GameMode::Sixes),
|
||||
"TF2-6" => Ok(GameMode::Sixes),
|
||||
"6vs6" => Ok(GameMode::Sixes),
|
||||
"TF2 4vs4" => Ok(GameMode::Fours),
|
||||
"TF2-4" => Ok(GameMode::Fours),
|
||||
"4vs4" => Ok(GameMode::Fours),
|
||||
"TF2 2vs2" => Ok(GameMode::Ultiduo),
|
||||
"2vs2" => Ok(GameMode::Ultiduo),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue