diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-05-02 23:10:40 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-05-03 18:48:16 +0200 |
commit | 17d599beb94ec286cab5c994f639a557f2cce4bb (patch) | |
tree | 619cc23144adb158ff4045d116e4682551849b21 | |
parent | 52b0899094c4c419499791307b4410c215d0c6d6 (diff) | |
download | andean-abyss-17d599beb94ec286cab5c994f639a557f2cce4bb.tar.gz |
Don't auto-buy first Civic Action in LimOp and Free Train.
-rw-r--r-- | rules.js | 19 |
1 files changed, 13 insertions, 6 deletions
@@ -2780,10 +2780,7 @@ states.train = { }, civic() { push_undo() - if (game.op.limited && game.op.spaces.length > 0) - goto_train_civic_action(game.op.spaces[0]) - else - game.state = "train_civic" + game.state = "train_civic" }, end_train: end_operation, } @@ -2845,7 +2842,7 @@ states.vm_train_base_or_civic = { }, civic() { push_undo() - goto_train_civic_action(game.vm.s) + game.state = "vm_train_civic" }, end_train: end_operation, } @@ -2945,6 +2942,17 @@ function end_train_civic_action() { game.state = "train_done" } +states.vm_train_civic = { + prompt() { + view.prompt = `Train: Buy Civic Action.` + gen_action_space(game.vm.s) + }, + space(s) { + push_undo() + goto_train_civic_action(s) + }, +} + states.train_civic = { prompt() { view.prompt = `Train: Buy Civic Action.` @@ -2959,7 +2967,6 @@ states.train_civic = { select_op_space(s, 3) goto_train_civic_action(s) }, - end_train: end_operation, } states.train_civic_buy = { |