summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMischa Untaga <99098079+MischaU8@users.noreply.github.com>2024-04-09 09:05:49 +0200
committerMischa Untaga <99098079+MischaU8@users.noreply.github.com>2024-04-09 09:05:49 +0200
commit5d34ede3926b45c930586a760997b4646ab3ad3d (patch)
tree38cbd1119bcdbddce9bd71eb81fea46339625d10
parent4ea2ea881e307e2b6f0897f62eabed4deb939b0d (diff)
downloadvotes-for-women-5d34ede3926b45c930586a760997b4646ab3ad3d.tar.gz
Extra Event cost applies only to Event cards, not Strategy / State cards
-rw-r--r--rules.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/rules.js b/rules.js
index 39f941c..574268d 100644
--- a/rules.js
+++ b/rules.js
@@ -1192,7 +1192,7 @@ function play_card_event(c) {
else
log_round("Event")
log("C" + c)
- if (has_extra_event_cost())
+ if ((is_support_card(c) || is_opposition_card(c)) && has_extra_event_cost())
decrease_player_buttons(1)
log_br()
goto_event(c)