From 97bb67ae2b99e3a75e83eec9c6ddcf30db15d896 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Mon, 29 Jun 2020 16:34:22 -0700 Subject: [PATCH] Fix "KUDOS SLAM" achievement to only consider players that answered The potentially larger number of registered players is totally irrelevant here. --- empathy/empathy.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/empathy/empathy.jsx b/empathy/empathy.jsx index 4ef6807..3e6399d 100644 --- a/empathy/empathy.jsx +++ b/empathy/empathy.jsx @@ -1229,10 +1229,11 @@ class Game extends React.PureComponent { render() { const state = this.state; - const players_total = 1 + state.other_players.length; if (state.scores) { + const players_total = state.players_answered.size; + let perfect_score = 0; for (let i = 0; i < state.active_prompt.items && -- 2.43.0