summaryrefslogtreecommitdiff
path: root/rules.js
diff options
context:
space:
mode:
Diffstat (limited to 'rules.js')
-rw-r--r--rules.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/rules.js b/rules.js
index d4fe76b..1bc8157 100644
--- a/rules.js
+++ b/rules.js
@@ -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)
}