Fix difficulty names

Expert ↔ Challenge
master
Simon Bruder 2020-06-26 21:21:38 +02:00
parent b7f60302ee
commit 4f6c971ec7
No known key found for this signature in database
GPG Key ID: 6F03E0000CC5B62F
1 changed files with 2 additions and 2 deletions

View File

@ -360,9 +360,9 @@ impl fmt::Display for Difficulty {
let difficulty = match self.difficulty {
1 => "Basic",
2 => "Difficult",
3 => "Challenge",
3 => "Expert",
4 => "Beginner",
6 => "Expert",
6 => "Challenge",
_ => "Unknown Difficulty",
};
write!(f, "{} {}", players, difficulty)