From: Carl Worth Date: Sun, 28 Jun 2020 00:39:52 +0000 (-0700) Subject: Add score for each word in the display of results for each round X-Git-Url: https://git.cworth.org/git?p=lmno.games;a=commitdiff_plain;h=d82276f171fa3a918e8d78db68e7c5b75404e309;ds=sidebyside Add score for each word in the display of results for each round This really helps in picking out whether two words were of equal value or not. --- diff --git a/empathy/empathy.jsx b/empathy/empathy.jsx index 044d4e0..407a4fe 100644 --- a/empathy/empathy.jsx +++ b/empathy/empathy.jsx @@ -1077,7 +1077,7 @@ class Game extends React.PureComponent { {state.scores.words.map(word => { return (
  • - {word.word}: {word.players.join(', ')} + {word.word} ({word.players.length}): {word.players.join(', ')}
  • ); })}