diff options
author | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-11-28 11:19:55 +0100 |
---|---|---|
committer | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-11-28 11:19:55 +0100 |
commit | 0c581538d737c0673920514193e5c36a0d510715 (patch) | |
tree | 270384cdf701788114918706682ac30e93aeb0ff | |
parent | 6248c5c943b46e2a7bc8cb88597921c265b2504b (diff) | |
download | votes-for-women-0c581538d737c0673920514193e5c36a0d510715.tar.gz |
vote msg
-rw-r--r-- | rules.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1671,13 +1671,13 @@ const GREEN_CHECK_VICTORY = 36 const RED_X_VICTORY = 13 function ratify_nineteenth_amendment(us_state) { - log(`S${us_state} ${COLOR_CODE[GREEN_CHECK]}.`) + log(`S${us_state} voted ${COLOR_CODE[GREEN_CHECK]}.`) game.us_states[us_state] = 0 set_green_check(us_state) } function reject_nineteenth_amendment(us_state) { - log(`S${us_state} ${COLOR_CODE[RED_X]}.`) + log(`S${us_state} voted ${COLOR_CODE[RED_X]}.`) game.us_states[us_state] = 0 set_red_x(us_state) } |