diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-09-23 19:58:07 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-09-23 19:58:07 +0200 |
commit | 950863cd9ba72d7c72fb7b3b6e4c7051412e33c7 (patch) | |
tree | f2a8a7417af7d679d7ae092d2d11ba76293f8eb0 | |
parent | 66d01c1eecfc08b8d80850f061a8282de19f485e (diff) | |
download | table-battles-950863cd9ba72d7c72fb7b3b6e4c7051412e33c7.tar.gz |
S43: No screen when Villar's Left is attacker, not when attacked!
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3338,7 +3338,7 @@ function can_take_reaction(c, a, wild) { if (game.scenario === S43_DENAIN) { if (c === S43_DUTCH_HORSE) { // May only screen Villars's Left if Broglie has routed - if (game.target === S43_VILLARS_LEFT) + if (game.selected === S43_VILLARS_LEFT) if (is_card_in_play(S43_BROGLIE)) return false } |