]> git.cworth.org Git - lmno-server/blobdiff - empathy.js
Omit inactive players when reporting scores
[lmno-server] / empathy.js
index 4fdd4b329aa3eafeb39cf57c33df8fd953a65b7f..bc846c19600a13b9c03e8cd65b9673f517c7109e 100644 (file)
@@ -410,7 +410,7 @@ class Empathy extends Game {
 
     /* Perform a (non-strict) majority ruling on equivalencies,
      * dropping all that didn't get enough votes. */
-    const quorum = Math.floor((this.players.length + 1)/2);
+    const quorum = Math.floor((this.state.players_judged.length + 1)/2);
     const agreed_equivalencies = Object.values(this.equivalencies).filter(
       eq => eq.count >= quorum);
 
@@ -481,7 +481,7 @@ class Empathy extends Game {
       group.players.forEach(p => p.round_score += group.players.size);
     }
 
-    const scores = this.players.map(p => {
+    const scores = this.players.filter(p => p.active).map(p => {
       return {
         player: p.name,
         score: p.round_score