mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-22 11:04: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...");
|
log::trace!("Emojifying IMP...");
|
||||||
|
|
||||||
match imp {
|
match imp {
|
||||||
Short::MIN..=-50 => "🟧",
|
Short::MIN..=-49 => "🟧",
|
||||||
-49..=-25 => "🔶",
|
-48..=-25 => "🔶",
|
||||||
-24..=-1 => "🔸",
|
-24..=-1 => "🔸",
|
||||||
0..=24 => "🔹",
|
0..=24 => "🔹",
|
||||||
25..=49 => "🔷️",
|
25..=48 => "🔷️",
|
||||||
50..=Short::MAX => "🟦",
|
49..=Short::MAX => "🟦",
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue