mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-22 02:54:21 +00:00
Consider 49 IMP and -49 IMP to be the respective awards
This matches Stratz's website behaviour.
This commit is contained in:
parent
e6c1962c43
commit
a7a4ad06e3
1 changed files with 4 additions and 4 deletions
|
@ -538,12 +538,12 @@ impl BroochService {
|
|||
log::trace!("Emojifying IMP...");
|
||||
|
||||
match imp {
|
||||
Short::MIN..=-50 => "🟧",
|
||||
-49..=-25 => "🔶",
|
||||
Short::MIN..=-49 => "🟧",
|
||||
-48..=-25 => "🔶",
|
||||
-24..=-1 => "🔸",
|
||||
0..=24 => "🔹",
|
||||
25..=49 => "🔷️",
|
||||
50..=Short::MAX => "🟦",
|
||||
25..=48 => "🔷️",
|
||||
49..=Short::MAX => "🟦",
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue