diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-05-30 12:01:47 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-05-30 21:59:25 +0200 |
commit | 503ecbd197669a36c86c32f6edb9d3a1ef5f8de4 (patch) | |
tree | 9a8a11fc9035bbb89cbd4f0a68e0e151ae075665 | |
parent | 8bb5f1e3a67d7efa5fd22a3bdeadb39bc87ce6f7 (diff) | |
download | friedrich-503ecbd197669a36c86c32f6edb9d3a1ef5f8de4.tar.gz |
skip pause after last combat
-rw-r--r-- | rules.js | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -2121,7 +2121,9 @@ function next_combat() { if (game.combat.length > 0) game.state = "combat" else - game.state = "combat_done" + // TODO: a bit abrupt, but saves time if + // game.state = "combat_done" + goto_retroactive_conquest() } @@ -2139,6 +2141,7 @@ states.combat = { }, } +// TODO: unused for now states.combat_done = { inactive: "attack", prompt() { |