diff options
author | Tor Andersson <tor@ccxvii.net> | 2025-03-30 23:59:41 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2025-03-31 10:56:04 +0200 |
commit | bce11c1a2d05321b1e1a26b171822e384e16bfb1 (patch) | |
tree | 230a92f3de8c51f5b99102b38892730992bcae15 /rules.js | |
parent | 6fefa6972325c161273a3ce8497ea9ee93c828db (diff) | |
download | land-and-freedom-bce11c1a2d05321b1e1a26b171822e384e16bfb1.tar.gz |
Auto-resolve confirmation during fascist event.
Should be a rare or impossible case.
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1145,6 +1145,11 @@ states.choose_medallion = { }; states.confirm_turn = { inactive: 'confirm their move', + auto_resolve() { + if (game.fascist === 1) + return true; + return false; + }, prompt() { if (game.fascist === 2) view.prompt = 'Fascist Test: Done.'; |