Fix difficulty names
Expert ↔ Challenge
This commit is contained in:
parent
b7f60302ee
commit
4f6c971ec7
|
@ -360,9 +360,9 @@ impl fmt::Display for Difficulty {
|
||||||
let difficulty = match self.difficulty {
|
let difficulty = match self.difficulty {
|
||||||
1 => "Basic",
|
1 => "Basic",
|
||||||
2 => "Difficult",
|
2 => "Difficult",
|
||||||
3 => "Challenge",
|
3 => "Expert",
|
||||||
4 => "Beginner",
|
4 => "Beginner",
|
||||||
6 => "Expert",
|
6 => "Challenge",
|
||||||
_ => "Unknown Difficulty",
|
_ => "Unknown Difficulty",
|
||||||
};
|
};
|
||||||
write!(f, "{} {}", players, difficulty)
|
write!(f, "{} {}", players, difficulty)
|
||||||
|
|
Reference in a new issue