From: Carl Worth Date: Sun, 28 Jun 2020 00:31:34 +0000 (-0700) Subject: Track server change of grouping players with tied scores X-Git-Url: https://git.cworth.org/git?p=lmno.games;a=commitdiff_plain;h=43502f89bf6346115c388b80a6c7f559a336d000;hp=e41040d89d5aaceabe7f5bb7a12230e2079ffd7e Track server change of grouping players with tied scores This makes it more clear that players tied by displaying them in the same row, (which also saves some space if there are a lot of ties). --- diff --git a/empathy/empathy.jsx b/empathy/empathy.jsx index 2c70bc3..85738f3 100644 --- a/empathy/empathy.jsx +++ b/empathy/empathy.jsx @@ -1067,7 +1067,7 @@ class Game extends React.PureComponent { {state.scores.scores.map(score => { return (
  • - {score.player}: {score.score} + {score.players.join("/")}: {score.score}
  • ); })}