diff options
author | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-11-27 14:06:06 +0100 |
---|---|---|
committer | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-11-27 14:06:06 +0100 |
commit | c8a52123c8efb0f5475d434760d0b755c467a890 (patch) | |
tree | c0de43289034ac5340f4db12b8a5cf5b77da7bd7 | |
parent | 6ed28de99b71c226bc5eff4343f1966f27d25889 (diff) | |
download | votes-for-women-c8a52123c8efb0f5475d434760d0b755c467a890.tar.gz |
use icon for 19th logs
-rw-r--r-- | rules.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1624,13 +1624,13 @@ const GREEN_CHECK_VICTORY = 36 const RED_X_VICTORY = 13 function ratify_nineteenth_amendment(us_state) { - log(`S${us_state} ratified the Nineteenth Amendment.`) + log(`S${us_state} ${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} rejected the Nineteenth Amendment.`) + log(`S${us_state} ${COLOR_CODE[RED_X]}.`) game.us_states[us_state] = 0 set_red_x(us_state) } |