summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rules.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/rules.js b/rules.js
index 458c9f4..d3ede47 100644
--- a/rules.js
+++ b/rules.js
@@ -3242,7 +3242,11 @@ exports.setup = function (seed, scenario, options) {
// Starting loyalty, starting with a random player.
game.state = 'loyalty'
- game.active = random(player_count)
+
+ if (options.tournament)
+ game.active = 0
+ else
+ game.active = random(player_count)
return save_game()
}