X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=empathy.js;h=56ac53f9c32f95d5b6cbefdebb21d69ed68918e0;hb=674a3db4a23ee236f08bf3997a1c4fb939e78724;hp=bc846c19600a13b9c03e8cd65b9673f517c7109e;hpb=a769d4675ee33d59d70e059870cc89c5ac731d07;p=empires-server diff --git a/empathy.js b/empathy.js index bc846c1..56ac53f 100644 --- a/empathy.js +++ b/empathy.js @@ -577,7 +577,7 @@ router.post('/answer/:prompt_id([0-9]+)', (request, response) => { /* If every registered player has answered, then there's no need to * wait for anything else. */ - if (game.state.players_answered.length >= game.players.length) + if (game.state.players_answered.length >= game.active_players) game.perform_judging(); });