diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-05-18 18:52:37 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-05-24 21:52:29 +0200 |
commit | fca6f219eff58c84cc7d3f004582cda06027c675 (patch) | |
tree | 01645370e00687619cbdc5247a7f5ef3b8aaf69a | |
parent | 6e42f5c52a8a6f24230a7f07225a5d42266f8f0d (diff) | |
download | red-flag-over-paris-fca6f219eff58c84cc7d3f004582cda06027c675.tar.gz |
Fix player order after Censorship phase.
-rw-r--r-- | rules.js | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1039,9 +1039,8 @@ states.censorship_phase = { log(game.active + " - Censorship") logi("C" + c) discard_card(c) + game.active = enemy_player() if (game.active === game.initiative) - game.active = enemy_player() - else goto_strategy_phase() }, } |