summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rules.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/rules.js b/rules.js
index e3d01bf..e7f4fc1 100644
--- a/rules.js
+++ b/rules.js
@@ -2271,9 +2271,11 @@ states.game_over = {
},
}
+exports.ready = function (scenario, players) {
+ return players.length === 2;
+}
+
exports.setup = function (scenario, players) {
- if (players.length != 2)
- throw new Error("Invalid player count: " + players.length);
game = {
tournament: (scenario == "Tournament"),
state: null,