summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2024-09-23 19:58:07 +0200
committerTor Andersson <tor@ccxvii.net>2024-09-23 19:58:07 +0200
commit950863cd9ba72d7c72fb7b3b6e4c7051412e33c7 (patch)
treef2a8a7417af7d679d7ae092d2d11ba76293f8eb0
parent66d01c1eecfc08b8d80850f061a8282de19f485e (diff)
downloadtable-battles-950863cd9ba72d7c72fb7b3b6e4c7051412e33c7.tar.gz
S43: No screen when Villar's Left is attacker, not when attacked!
-rw-r--r--rules.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/rules.js b/rules.js
index 2461128..93f9e7d 100644
--- a/rules.js
+++ b/rules.js
@@ -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
}