summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2023-05-18 18:52:37 +0200
committerTor Andersson <tor@ccxvii.net>2023-05-24 21:52:29 +0200
commitfca6f219eff58c84cc7d3f004582cda06027c675 (patch)
tree01645370e00687619cbdc5247a7f5ef3b8aaf69a
parent6e42f5c52a8a6f24230a7f07225a5d42266f8f0d (diff)
downloadred-flag-over-paris-fca6f219eff58c84cc7d3f004582cda06027c675.tar.gz
Fix player order after Censorship phase.
-rw-r--r--rules.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/rules.js b/rules.js
index fe89103..c5f20e1 100644
--- a/rules.js
+++ b/rules.js
@@ -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()
},
}