diff --git a/templates/leaderboard.html b/templates/leaderboard.html
index 43967d19..a6e414d2 100644
--- a/templates/leaderboard.html
+++ b/templates/leaderboard.html
@@ -94,8 +94,8 @@
- <% (sort=='pp' ? user.pp+'pp' : "" ) %>
- <% (sort=='rscore' ? scoreFormat(user.rscore) : "" ) %>
+ <% addCommas((sort=='pp' ? user.pp+'pp' : "" )) %>
+ <% addCommas((sort=='rscore' ? scoreFormat(user.rscore) : "" )) %>
|
<% user.acc.toFixed(2) %>%
diff --git a/templates/profile.html b/templates/profile.html
index 669ced2f..196f8c00 100644
--- a/templates/profile.html
+++ b/templates/profile.html
@@ -47,7 +47,7 @@
- <% map.pp.toFixed() %>pp
+ <% addCommas(map.pp.toFixed()) %>pp
accuracy:
<% map.acc.toFixed(2) %>%
|