diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -1177,6 +1177,8 @@ states.select_moves = { } gen_action('group') gen_action('regroup') + if (game.turn_option === 'pass') + gen_action('end_turn') }, group() { push_undo() @@ -1186,6 +1188,10 @@ states.select_moves = { push_undo() game.state = 'regroup_move_command_point' }, + end_turn() { + clear_undo() + end_player_turn() + } } function gen_rommel_move() { |