diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-12-17 19:56:31 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-12-17 19:56:31 +0100 |
commit | f8f40e6c1d03e0600334ca6bfa28030146762c89 (patch) | |
tree | 9d611ffc5cd57bd1c20cc9f67eccc216093eed71 | |
parent | 9a5cc3666dd80cf555214583b215dcd1002b8af6 (diff) | |
download | pax-pamir-f8f40e6c1d03e0600334ca6bfa28030146762c89.tar.gz |
-rw-r--r-- | rules.js | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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() } |