diff options
author | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2024-04-09 15:40:13 +0200 |
---|---|---|
committer | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2024-04-09 15:40:13 +0200 |
commit | 4c9a2fce60418ed82974620ca256350e8d0b87fc (patch) | |
tree | 4ab55e7a22ae8eda965f6263ac6f2f5ef8c1075e | |
parent | 5d34ede3926b45c930586a760997b4646ab3ad3d (diff) | |
download | votes-for-women-4c9a2fce60418ed82974620ca256350e8d0b87fc.tar.gz |
Counter Strat has no effect if there are no persistent cards
-rw-r--r-- | rules.js | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -2464,7 +2464,11 @@ function vm_campaigning_action() { function vm_counter_strat() { vm_assert_argcount(0) - game.state = "vm_counter_strat" + if (game.persistent_turn.length) { + game.state = "vm_counter_strat" + } else { + vm_next() + } } function vm_draw_2_play_1_event() { |