diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2024-12-15 21:38:23 +0000 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2024-12-15 21:38:23 +0000 |
commit | e95b074cf8e3f2595d24bff3c7071aa0c6aa705f (patch) | |
tree | 82560cafdf8790a881d5194e3b91dcb649a99991 | |
parent | e7745a392f4fa007fa5df5af619f5ef0d246b068 (diff) | |
download | 1989-dawn-of-freedom-e95b074cf8e3f2595d24bff3c7071aa0c6aa705f.tar.gz |
Fix TST inactive prompt
-rw-r--r-- | rules.js | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -913,7 +913,7 @@ states.add_influence = { } states.tiananmen_square_attempt = { - inactive: 'Tiananmen Square Attempt', + inactive: 'do Tiananmen Square Attempt', prompt() { view.prompt = 'Tiananmen Square Attempt: Roll a die.' gen_action('roll') @@ -926,7 +926,7 @@ states.tiananmen_square_attempt = { } states.tiananmen_square_attempt_success = { - inactive: 'Tiananmen Square Attempt', + inactive: 'do Tiananmen Square Attempt', prompt() { if (game.vm_event > 200) { // TODO magic number view.prompt = 'Tiananmen Square Attempt: Successful. Claim award.' @@ -947,7 +947,7 @@ states.tiananmen_square_attempt_success = { } states.tiananmen_square_attempt_fail = { - inactive: 'Tiananmen Square Attempt', + inactive: 'do Tiananmen Square Attempt', prompt() { view.prompt = 'Tiananmen Square Attempt: Failed.' gen_action('end_round') @@ -959,7 +959,7 @@ states.tiananmen_square_attempt_fail = { } states.tiananmen_square_attempt_done = { - inactive: 'Tiananmen Square Attempt', + inactive: 'do Tiananmen Square Attempt', prompt() { view.prompt = 'Tiananmen Square Attempt: Done.' gen_action('end_round') |