Browse Source

Don't send map star rating in chat

Since stable client now displays correct star rating, we no longer need
to send it.
Clément Wolf 4 months ago
parent
commit
9f83278ad5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ranked.js

+ 1 - 1
ranked.js

@@ -154,7 +154,7 @@ async function push_map(lobby, new_map) {
   lobby.data.recent_mapsets.push(new_map.set_id);
 
   try {
-    const flavor = `${MAP_TYPES[new_map.ranked] || 'graveyard'} ${new_map.stars.toFixed(2)}*, ${Math.round(new_map.pp)}pp`;
+    const flavor = `${MAP_TYPES[new_map.ranked] || 'graveyard'} ${Math.round(new_map.pp)}pp`;
     const map_name = `[https://osu.ppy.sh/beatmaps/${new_map.map_id} ${new_map.name}]`;
     const osu_direct_link = `[https://api.osu.direct/d/${new_map.set_id} [1]]`;
     const chimu_link = `[https://chimu.moe/d/${new_map.set_id} [2]]`;