diff options
author | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2024-04-09 09:05:49 +0200 |
---|---|---|
committer | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2024-04-09 09:05:49 +0200 |
commit | 5d34ede3926b45c930586a760997b4646ab3ad3d (patch) | |
tree | 38cbd1119bcdbddce9bd71eb81fea46339625d10 /rules.js | |
parent | 4ea2ea881e307e2b6f0897f62eabed4deb939b0d (diff) | |
download | votes-for-women-5d34ede3926b45c930586a760997b4646ab3ad3d.tar.gz |
Extra Event cost applies only to Event cards, not Strategy / State cards
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |