Add total pp rankings

This commit is contained in:
Natsu Kagami 2023-12-27 17:33:07 +01:00
parent f567eb056d
commit eee975092f
Signed by: nki
GPG key ID: 55A032EB38B49ADB
3 changed files with 36 additions and 11 deletions

View file

@ -299,7 +299,7 @@ async fn scan_changes(
}
// Update list mutably
for handle in row.party.members.iter().map(|v| v.handle.as_str()) {
if let Some(mut u) = handle_to_user_id.get_mut(handle) {
if let Some(u) = handle_to_user_id.get_mut(handle) {
u.row = Some(row.clone());
}
}